Enum VmType
Represents the data types supported by the virtual machine.
Namespace: VM.Core.Instructions
Assembly: VM.dll
Syntax
public enum VmType : byte
Fields
| Name | Description |
|---|---|
| ARRAY | Array of values |
| BOOL | Boolean value (true/false) |
| FLOAT | 32-bit floating point number |
| INT | 32-bit signed integer |
| NULL | Null reference |
| STRING | UTF-8 encoded string |
| STRUCT | Structure/object type |