10 lines
138 B
Text
10 lines
138 B
Text
void local fn MultiplyByThree( value as ^long )
|
|
*value *= 3
|
|
end fn
|
|
|
|
long num
|
|
num = 9
|
|
fn MultiplyByThree( @num )
|
|
print num
|
|
|
|
HandleEvents
|