yes = true
Posted: Thu Jul 07, 2011 9:00 am
I'm brand new to Cobra, and it looks fantastic! Is there a way I can substitute (like 'typedef', '#define', macro, etc.) the "true" keyword with "yes", and "false" with "no"? It's just a personal preference, but for my poor brain, code like:
is more readable than:
Any way to do this type of keyword substitution in Cobra?
Thanks!
- Code: Select all
success = yes
failed = no
is more readable than:
- Code: Select all
success = true
failed = false
Any way to do this type of keyword substitution in Cobra?
Thanks!