« 2002 ICPC Programming Competition

» Stepmania patch for gamecon.c (Linux kernel)


ocamlyacc support for star and plus

A patch to make ocamlyacc support * and +. A bit of a hack :)

Lets you do this:

%token ‹ int › INT_LITERAL
%token EOF

%start main /* entry point */
%type [int list] main

%%
main:
  INT_LITERAL+ EOF {}
  ;