URR by Guillermo Bonveh
- Posted by aku at inbox.as Jun 25, 2001
- 485 views
----------- contoh.ex function func2() return 123 end function function func1() return func2() + 234 end function function func3() return 345 end function object x x = func3 () ------------------------ If I run ex urr contoh.ex contoh.urr the result of contoh.urr: ------------------------------- function func2() return 123 end function function func3() return 345 end function object x x = func3 () ---------------------------- my suggestion: remove func2() because it is called from func1() that is not called. Thanks