Files
tinygo/testdata/init.go
T
Marc-Antoine Ruel 7f30ef7e4d testdata: add more test cases in testdata
Specifically test for one or multiple init functions.
2018-10-25 20:37:35 +02:00

10 lines
81 B
Go

package main
func init() {
println("init")
}
func main() {
println("main")
}