Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
7f5b167dd7b9ab7d58c7723ac6b8dbccfc474a7a
/
.
/
examples
/
go
/
default.go
blob: 65be52b7a9c564b2b2f276093a666ff878242770 [
file
] [
log
] [
blame
] [
raw
]
// 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() {}