2 ! Factor syntax is very simple, it just contains words separated by spaces
3 ! '!' is a line comment word
4 ! "whatever" is a string word
5 USING: kernel io ; ! This is a vocabulary inclusion word
9 "this is a string" print ;
11 : test ( x -- y ) ! Parenthesis define a stack effect declaration