Operandi | Tipo | Operatore |
---|
| | Ordinale | Byte | Ord() |
---|
| | Ordinale | Ordinale | Pred(), Succ() |
---|
| | | Intero | MaxInt |
---|
| | Intero | Intero | +, -, Not, Abs(), Sqr(), Random(), Lo(), Hi(), Swap() |
---|
| Intero | Intero | Intero | +, -, *, Div, Mod, And, Or, Xor |
---|
| | Intero | | Inc(), Dec() |
---|
| Intero | Intero | | Inc(X, I), Dec(X, I) |
---|
| | | Boolean | False, True, KeyPressed |
---|
| | Boolean | Boolean | Not |
---|
| ... | ... | Boolean | <, <=, =, >=, >, <> |
---|
| Boolean | Boolean | Boolean | And, Or, Xor |
---|
| | Intero | Boolean | Odd() |
---|
| | | Reale | Pi, Random |
---|
| | Reale | Reale | +, -, Abs(), Sqr(), Sqrt(), Exp(), Ln(), Sin(), Cos(), ArcTan(), Int(), Frac() |
---|
| Reale | Reale | Reale | +, -, *, / |
---|
| | Reale | Intero | Trunc(), Round() |
---|
| | | Char | '?', #0...#255, ReadKey |
---|
| | Char | Char | UpCase() |
---|
| | Byte | Char | Chr() |
---|
| | | String | '…' |
---|
String | String | ... | String | +, Concat(S1, S2, ...) |
---|
String | Byte | Byte | String | Copy(S, P, L) |
---|
| | String | Byte | Length() |
---|
| String | String | Byte | Pos(S1, S2) |
---|
String | String | Byte | | Insert(S1, S2, P) |
---|
String | Byte | Byte | | Delete(S, P, L) |
---|
|