Files
Brad Peabody 95f509b109 wasm test suite (#1116)
* wasm: add test suite using headlless chrome
2020-05-23 14:12:01 +02:00

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)
}