functions in sequence


puzzle

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.