Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Hello! What's your name?")
- name=read()
- write("So your name is ")
- write(name)
- write(", what a beautiful name.\n")
- sleep(1)
- write("So how old are you?")
- age=read()
- write("Aaah")
- write(age)
- print("")
- write("What do you want to discuss?\n")
- write("a.Elephants\n\nb.Eiffel tower\n\nc.Sweden\n")
- choice=read()
- if choice=="a" then
- write("elephants are green and have big moustaches.")
- elseif choice=="b" then
- write("The Eiffel tower lies in Zimbabwe, It is the shortest tower in the world.")
- elseif choice=="c" then
- write("Sweden Is a country in asia, they hate exotic food and it is really hot there, I were not created in Sweden.")
- else
- write("Sorry but I don't understand.")
- end
- write("Well, goodbye!")
Advertisement
Add Comment
Please, Sign In to add comment