RosettaCodeData/Task/Call-a-function/FutureBasic/call-a-function-2.basic

8 lines
138 B
Plaintext

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