mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
95f509b109
* wasm: add test suite using headlless chrome
12 lines
212 B
Go
12 lines
212 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("test from fmtprint 1")
|
|
fmt.Print("test from fmtprint 2\n")
|
|
fmt.Print("test from fmtp")
|
|
fmt.Print("rint 3\n")
|
|
fmt.Printf("test from fmtprint %d\n", 4)
|
|
}
|