Created
October 7, 2017 16:44
-
-
Save khan-hasan/2b31d1af4c37b81fef470eb3770fe2f9 to your computer and use it in GitHub Desktop.
CF 3.2 | 3 simple ruby "hello world" programs
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
if true | |
puts "this is true" | |
else | |
puts "this is false" | |
end |
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
def choose | |
puts "Do you like programming? Yes, no, or maybe please." | |
choice = gets.chomp | |
case choice.downcase | |
when "yes" | |
puts "That\'s great!" | |
when "no" | |
puts "That\'s too bad!" | |
when "maybe" | |
puts "Glad you are giving it a chance!" | |
else | |
puts "I have no idea what that means." | |
end | |
end | |
choose |
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
# 3.times do | |
# puts "Hello!" | |
# end | |
# number = 0 | |
# while (number <= 10) do # while this condition is true, do... | |
# p "the number is now #{number}" # whatever is in this code block | |
# number += 1 # short for number = number + 1 | |
# end # don't forget your end | |
(0..10).each do |n| | |
p "the new number is #{n}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment