Try OpenEdge Now
skip to main content
Guide for New Developers
An overview of ABL : Understanding ABL Syntax : Statements
 

Statements

This is the basic syntax of an ABL application: An ABL application consists of one or more statements. Each statement consists of a number of keywords, user-defined placeholders for values, symbols, and constants.
statement { . | : } [ statement { . | : } ...
The following statement is a one-statement application that displays “Hello, World!” in a message alert box:
MESSAGE "Hello, World!" VIEW-AS ALERT-BOX.