GO_Examples Here I'm going to publish some Go Examples numericalSeries.go Show numbers between A and B in pairs Example: A=4 and B=10, result -> 4 6 8 10 palindrome.go Read from keyboard one string and check if it's palindrome Example: input: "CAR" -> false input: "ROTATOR" -> true