#ABNF 1.0; /* Copyright 1998-2002 W3C (MIT, INRIA, Keio), All Rights Reserved. Permission to use, copy, modify and distribute this SRGS grammar and its accompanying documentation for any purpose and without fee is hereby granted in perpetuity, provided that the above copyright notice and this paragraph appear in all copies. The copyright holders make no representation about the suitability of the grammar for any purpose. It is provided "as is" without expressed or implied warranty. */ language en-US; mode voice; root $main; meta 'description' is 'Implementation Report test -- a set of alternatives with a legal weight on one or many but not all alternatives'; meta 'in.1' is 'stick'; meta 'out.1' is '$main["stick"]'; /** * @example stick * @example puck * @example shoulder pads */ public $main = (/10/ (stick) | /5/ (puck) | /2/ (jersey) | (gloves) | (shoulder pads) | /0.5/ (elbow pads) | /0.5/ (shin guards) ) ;