OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount] / test / expected_dir / factor1.factor
1 factor  comment ! This is a comment
2 factor  comment ! Factor syntax is very simple, it just contains words separated by spaces
3 factor  comment ! '!' is a line comment word
4 factor  comment ! "whatever" is a string word
5 factor  code    USING: kernel io ; ! This is a vocabulary inclusion word
6 factor  code    IN: testing
7 factor  blank   
8 factor  code    : test-string ( -- )
9 factor  code      "this is a string" print ;
10 factor  blank   
11 factor  code    : test ( x -- y ) ! Parenthesis define a stack effect declaration
12 factor  code      dup swap drop ;
13 factor  blank   
14 factor  code    MAIN: test