mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
13 lines
627 B
Plaintext
13 lines
627 B
Plaintext
fmt.Println("Hello, 你好, नमस्ते, Привет, ᎣᏏᏲ") // basic print, plus newline
|
|
p := struct { X, Y int }{ 17, 2 }
|
|
fmt.Println( "My point:", p, "x coord=", p.X ) // print structs, ints, etc
|
|
s := fmt.Sprintln( "My point:", p, "x coord=", p.X ) // print to string variable
|
|
|
|
fmt.Printf("%d hex:%x bin:%b fp:%f sci:%e",17,17,17,17.0,17.0) // c-ish format
|
|
s2 := fmt.Sprintf( "%d %f", 17, 17.0 ) // formatted print to string variable
|
|
|
|
hellomsg := `
|
|
"Hello" in Chinese is 你好 ('Ni Hao')
|
|
"Hello" in Hindi is नमस्ते ('Namaste')
|
|
` // multi-line string literal, using back-tick at beginning and end
|