mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
15 lines
288 B
Factor
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.
|
|
*/ + + ;
|