Created
January 28, 2025 14:12
-
-
Save RobertoBarros/a9eef6e1e9b0cb06bc26f5efffdc85df to your computer and use it in GitHub Desktop.
reboot_batch_1925_gifts_list_part_1
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
# Mensagem de Boas Vindas | |
puts "Seja Bem vindo a sua lista" | |
# LOOP | |
loop do | |
# Informar e perguntar qual opção | |
puts "Which action [list|add|delete|quit]?" | |
action = gets.chomp.downcase | |
#Executar (fake) a opção selecionada | |
case action | |
when "list" | |
puts "Aqui estara sua lista..." | |
when "add" | |
puts "Aqui será add..." | |
when "delete" | |
puts "Aqui será deletado..." | |
when "quit" | |
# Se for `quit` sai do loop | |
break | |
else | |
puts "Opção invalida" | |
end | |
# FIM DO LOOP | |
end | |
# Mensagem de Goodbye | |
puts "Goodbye" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment