basics
package main
import(
"fmt"
"strings"
)
func main() {
fmt.Println("Hello from Go!")
fmt.Println(strings.ToUpper("Hello really loud"))
}Types
Declare
Explicit =
Implicit :=
Casting
Ptrs
Panic
Last updated