This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Define mynum = 1 © Two ways to assign a number
1 → mynum
Define myfunc(x) = (sin(x))^2 © Two ways to assign a function
(sin(x))^2 → myfunc(x)
Define myfunc(x) = Func © Multi-statement function
If x < 0 Then
Return –x
Else
Return x
EndIf
EndFunc