RosettaCodeData/Task/Function-definition/FutureBasic/function-definition-2.basic

9 lines
113 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
window 1
2024-11-04 20:28:54 -08:00
long local fn multiply( a as long, b as long )
2023-07-01 11:58:00 -04:00
end fn = a * b
print fn multiply( 3, 9 )
HandleEvents