Skip to content

Instantly share code, notes, and snippets.

@BojanKomazec
Created April 23, 2017 18:15
Show Gist options
  • Save BojanKomazec/d545f058162699ccc6ce02c7246012f3 to your computer and use it in GitHub Desktop.
Save BojanKomazec/d545f058162699ccc6ce02c7246012f3 to your computer and use it in GitHub Desktop.
> v <- c(1, 2, 3)
> for (i in v) print (i)
[1] 1
[1] 2
[1] 3
> v <- c(1, '2', 3)
> for (i in v) print (i)
[1] "1"
[1] "2"
[1] "3"
> v <- c(1, "2", 3)
> for (i in v) print (i)
[1] "1"
[1] "2"
[1] "3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment