-
-
Save BojanKomazec/d545f058162699ccc6ce02c7246012f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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