meta-json/Tests/Test.swift
2025-04-06 00:38:25 +01:00

17 lines
210 B
Swift

import Meta
import MetaJSON
/// The test function.
func main() {
@State("test")
var test = 0
@State("other")
var other = 3
print(test)
print(other)
test = 1
other = 0
}
main()