RosettaCodeData/Task/Call-a-function/FutureBasic/call-a-function-2.basic
2023-07-01 13:44:08 -04:00

7 lines
138 B
Text

void local fn MyFunction( arg1 as long, arg2 as long, arg3 as long )
print @"MyFunction"
end fn
fn MyFunction( 1, 2, 3 )
HandleEvents