RosettaCodeData/Task/Comments/REBOL/comments-2.rebol
2023-07-01 13:44:08 -04:00

6 lines
99 B
Text

plus2: func [
"Adds two to a number."
n [number!] "The number to increase."
][
n + 2
]