Files
moxa/_test/ret7.go

12 lines
93 B
Go

package main
func one() uint {
return 1
}
func main() {
println(one())
}
// Output:
// 1