Created
June 19, 2012 02:51
-
-
Save kmandreza/2952036 to your computer and use it in GitHub Desktop.
Family Love
This file contains 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
family = ["Javier","Darjeeling","Chai"] | |
family.each do |i| | |
puts "I love you, " + i | |
end | |
in JS | |
var family = ["Javier","Darjeeling","Chai"]; | |
for (var i = 0; i < family.length; i++) { | |
console.log("I love you, " + family[i]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment