forked from AbleOS/ableos_userland
20 lines
213 B
Plaintext
20 lines
213 B
Plaintext
Type Byte = U8;
|
|
Type String = Vector<Byte>;
|
|
|
|
Enumurate Boolean{
|
|
False = 0,
|
|
True = 1,
|
|
}
|
|
|
|
Union Option<T>{
|
|
None,
|
|
Some<T>
|
|
}
|
|
|
|
|
|
|
|
Structure Version {
|
|
major: Byte,
|
|
minor: Byte,
|
|
patch: Byte,
|
|
}; |