mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
208e1719ad
* Add test command to tinygo
15 lines
126 B
Go
15 lines
126 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
Thing()
|
|
fmt.Println("normal main")
|
|
}
|
|
|
|
func Thing() {
|
|
fmt.Println("THING")
|
|
}
|