Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
package main import ("fmt") func main() { var i string = "Hello" var j int = 15 fmt.Printf("i has value: %v and type: %T\n", i, i) fmt.Printf("j has value: %v and type: %T", j, j) }
i has value: Hello and type: string
j has value: 15 and type: int