- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 1.2k
 
Data Types
        Christoph Heine edited this page Mar 24, 2018 
        ·
        11 revisions
      
    | Type | Notation | Explanation | 
|---|---|---|
| Integer | int | 
Positive, negative or infinite integer numbers | 
| Float | float | 
Positive, negative or infinite floating point numbers | 
| Text | text | 
Strings and characters | 
| File | file | 
File paths | 
| Boolean | bool | 
Boolean values (true or false) | 
| Type | Notation | Explanation | 
|---|---|---|
| Set | set(type) | 
Stores a set of values with a specific type | 
| Ordered Set | orderedset(type) | 
Stores a set of values with a specific type and stores the order they were inserted | 
| Dict | dict(keyType, valueType) | 
Stores key-value pairs with a specific type of key and a specific type of values |