puzzle Posted June 18, 2010 Share Posted June 18, 2010 I wonder how to define multiple functions inside one sequence. For example, define a sequence called TestModule. Then put a couple of functions like: function func1() do_something return 1 function func2() do_somethingelse return 1 I'd like to have another sequence called Main to call both functions in TestModule. I tried: TestModule.func1() TestModule.func2() When I tried to execute it, it doesn't throw any error but it doesn't do anything neither. So, if such feature does exist or I just did it incorrectly. Thanks a lot! Link to comment Share on other sites More sharing options...
AzeoTech Posted June 18, 2010 Share Posted June 18, 2010 You can't without using objects. The main docs for oop is here: http://www.azeotech.com/board/index.php?&showtopic=3878 Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.