RosettaCodeData/Task/Comments/REBOL/comments-2.rebol

7 lines
99 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
plus2: func [
"Adds two to a number."
n [number!] "The number to increase."
][
n + 2
]