Delia is a statically typed language so that its compiler can detect type errors and prevent many common SQL errors.
A Delia program consists of:
There are six basic scalar types:
| Type | Description | Equivalent Java type |
|---|---|---|
| int | a 32-bit integer | int |
| long | a 64-bit integer | long |
| number | a 64-bit floating point number | double |
| string | a text string (Unicode) | String |
| boolean | false or true | boolean |
| date | a date and time value | java.util.Date |