Files
2021-05-09 20:29:27 +02:00

15 lines
288 B
Factor

! 14 lines, 5 code, 6 comments, 3 blanks
/* we can use some dependencies */
USING: math multiline sequences ;
! this is a vocabulary
IN: my-vocab
! this comment describes this function
: add ( x y -- z )
"Hello World !\
" length /*
Add the three numbers.
*/ + + ;