Next: Increment and decrement operators, Previous: Coherent syntax, Up: Octave Features
The exclamation mark '!' (aka “Bang!”) is a negation operator, just like the tilde '~':
octave:1> if ! strcmp (program_name, "octave"), > "It's an error" > else > "It works!" > end ans = It works!