Files
compiler-explorer/examples/go/default.go
2018-03-28 22:23:06 +02:00

10 lines
176 B
Go

// Type your code here, or load an example.
// Your function name should start with a capital letter.
package main
func Square(x int) int {
return x * x
}
func main() {}