Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 answers
573 users
package main import "fmt" func main() { a, b, c := 54, 12, 9 d := 546 b1, b2, s1, s2 := false, true, "go", "node.js" fmt.Println(a, c, b, d, b1, b2, s1, s2) } /* run: 54 9 12 546 false true go node.js */