Files
tinygo/compiler/testdata/basic.go
T
Ayke van Laethem f58e75c386 compiler: add tests
This commit adds a very small test case. More importantly, it adds a
framework for other tests to be added in the future.
2020-05-03 15:43:45 +02:00

6 lines
55 B
Go

package main
func add(x, y int) int {
return x + y
}