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()