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() { temperature := 14 if temperature > 15 { fmt.Println("It is warm out there.") } else { fmt.Println("It is cold out there.") } }
It is cold out there.