All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javacc-7.0.3.test.javaFileGeneration.template.txt Maven / Gradle / Ivy

There is a newer version: 7.0.13
Show newest version
Hello, world
#if falseArg
   Shouldn't be here.
#else
   But this should
   -->${stringValue}<--
#fi

#if true
	True1
	${stringValue:-Should not be here}
	${noSuchVar:-Should be here}
	#if trueArg
	  True2
	#else
	  False 1
	#fi
#else
	False 2
	#if true
	  Not expected
	#else
	  Not expected 2
	#fi
#fi
	
This should say no: ${falseArg?yes:no}
This should say yes: ${trueArg?yes:no}

This should say someString: ${trueArg?${stringValue}:}
This should say xxsomeStringxx: ${not_found?${stringValue}:xx${stringValue}xx}

The end.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy