Refactor Library And Start Runtime

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-01-20 07:10:58 -05:00
parent 45a8baa323
commit 4bec71dcf4
11 changed files with 472 additions and 65 deletions
+14
View File
@@ -0,0 +1,14 @@
// The Swift Programming Language
// https://docs.swift.org/swift-book
public enum ValueType {
case Boolean(Bool)
}
public struct Value {
public var value_type: ValueType
}
public class Packet {
public init() {}
}