\ Ublu: simple example showing basic operations
\ Ublu is a stack-based scripting language for IBM i

\ Print a greeting
string "Hello from Ublu!" . nl

\ Simple arithmetic
5 4 + . nl
3 7 * . nl
