mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 10:37:46 +00:00
f58e75c386
This commit adds a very small test case. More importantly, it adds a framework for other tests to be added in the future.
6 lines
55 B
Go
6 lines
55 B
Go
package main
|
|
|
|
func add(x, y int) int {
|
|
return x + y
|
|
}
|