Quick actions

cmd+k|ctrl+k

Navigation

Languages

Essential Go / if, switch, goto

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T10:09:49Z

Updated

2019-03-26T10:09:49Z

package main

import "fmt"

func main() {
	a := 5
	b := 6
	if a == b {
		fmt.Print("a is equal to b\n")
	} else {
		fmt.Print("a is not equal to b\n")
	}
}
INFO