mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
14 lines
288 B
Factor
14 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.
|
|
*/ + + ;
|