13 c1 . digit* '\n' @{ puts "c1"; } |
14 c2 . alpha* '\n' @{ puts "c2"; }|
15 c3 . '.'* '\n' @{ puts "c3"; }
24 def run_machine( data )
33 if cs >= test_first_final
41 test_ex_c1, ?1, ?2, ?\n,
42 test_ex_c2, ?a, ?b, ?\n,
43 test_ex_c3, ?., ?., ?\n
48 =begin _____OUTPUT_____