Language basics / Language features |
The Genero Business Development Language (BDL) compiler treats a backslash ( \ ) as the default escape symbol, and treats the immediately following symbol as a literal, except for special characters such as \r or \t.
See the string literals reference for the complete list.
MAIN DISPLAY "\a" -- displays a DISPLAY "\r" -- displays CR DISPLAY "\n" -- displays NL DISPLAY "\ta" -- displays <tab>a DISPLAY "\\" -- displays \ DISPLAY "\\\\" -- displays \\ END MAIN