SCL Types
Basic types
SCL is statically typed language which means that types of the possible values of all variables are known already at compile time. The following types have builtin support:
- Boolean
- Byte, Short, Integer, Long
- Float, Double
- String
- BooleanArray, ByteArray, ShortArray, IntegerArray, LongArray, FloatArray, DoubleArray
- []
- (), (,), (,,), ...
- (->)
- Maybe
- Array
Other types are either imported from the host language or defined in SCL modules.