GoLang 01-golang01

forDemo c for for(int a = 0 ; a<10;a++){ } go for for a := 0 ; a < 10 ; a++ { } c if if (expression) { } go if if expression{ }