Skip to content

Instantly share code, notes, and snippets.

@chespinoza
Created July 11, 2013 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chespinoza/5979309 to your computer and use it in GitHub Desktop.
Save chespinoza/5979309 to your computer and use it in GitHub Desktop.
Finding Vowels with Go
package main
import "fmt"
func main() {
myString := "OLapOKA3EOR"
t := 0
for _, value := range myString {
switch value {
case 'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U':
fmt.Printf("%c\n",value)
t++
}
}
fmt.Printf("%d Vowels.", t)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment