I come here to learn.jacdelad wrote: Fri Dec 23, 2022 11:22 pm You seem to be not a bot (which is suspected first), so be welcomed in this forum and feel free to ask everything!
What would be the point to use a bot ? Makes no sense.
I come here to learn.jacdelad wrote: Fri Dec 23, 2022 11:22 pm You seem to be not a bot (which is suspected first), so be welcomed in this forum and feel free to ask everything!
Code: Select all
; Define the function
Function Multiply(x.i, y.i)
Multiply = x * y
EndFunction
; Define a result variable
Define result.i
; Call the function
result = Multiply(5, 6)
Debug result