-
-
Notifications
You must be signed in to change notification settings - Fork 4
Home
pannous edited this page Dec 9, 2020
·
28 revisions
Welcome to the Wasp/Angle wiki!
Hello World in Angle is
"Hello World"
as the last object in a block is its return value and the last result in the root block of the main file is printed.
Fibonacci in Angle is
fibonacci number = if number<2 : 0 else fibonacci number-1 + fibonacci number-2
maps
Note how number simulataneously acts as type and variable name.