meta-sqlite/Tests/Test.swift
2024-10-04 00:35:31 +02:00

24 lines
293 B
Swift

//
// Test.swift
// meta-sqlite
//
// Created by david-swift on 04.10.24.
//
import Meta
import MetaSQLite
/// The test function.
func main() {
@State("test")
var test = 0
@State("other")
var other = 3
print(test)
print(other)
test = 1
other = 0
}
main()