7 lines
99 B
Text
7 lines
99 B
Text
|
|
plus2: func [
|
||
|
|
"Adds two to a number."
|
||
|
|
n [number!] "The number to increase."
|
||
|
|
][
|
||
|
|
n + 2
|
||
|
|
]
|