7 lines
115 B
Text
7 lines
115 B
Text
|
|
local fn MultiplyByThree( value as long ) as long
|
||
|
|
end fn = value * 3
|
||
|
|
|
||
|
|
print fn MultiplyByThree( 13 )
|
||
|
|
|
||
|
|
HandleEvents
|