I'm doing a syntactic Analixer with jflex + javacup. At the .cup gramatic I have this part:
SUBPPARAMLIST ::= lambda | "(" EXPLIST ")"
Where lambda mean nothing (SUBPPARAMLIST can be empty)
Well, I managed to create all my tokens correctly in my .flex, but I dont know how to create the lambda symbol. I hope you guys can help me, let me know if you dont understand my problem
WhatDoIWriteHere{return symbol(sym.lambda);}