mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
7f30ef7e4d
Specifically test for one or multiple init functions.
10 lines
81 B
Go
10 lines
81 B
Go
package main
|
|
|
|
func init() {
|
|
println("init")
|
|
}
|
|
|
|
func main() {
|
|
println("main")
|
|
}
|