OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount] / test / src_dir / sample.i3
1 (* Modula-3 *) INTERFACE M3Sample; (* file extension ".i3" *)
2
3 (* This is a comment *)
4
5 (* This is a comment ...
6    ... spanning more than one line *)
7
8 CONST
9   sqString = 'this is a string within "a string" ...\n';
10   dqString = "this is a string within 'a string' ...\n";
11   
12 END M3Sample.