mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
10 lines
176 B
Go
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() {}
|