Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Compare strings

package main

import (
	"fmt"
)

func main() {
	a := "cat"
	b := "dog"
	fmt.Println(a == b)
	fmt.Println(a < b)
	fmt.Println()

	smile := "😄"
	angry := "😠"

	fmt.Println(smile == angry)
	fmt.Println(smile < angry)
	fmt.Println(smile > angry)

}
false
true

false
true
false