Older Version
Newer Version
Alyce
Nov 4, 2006
Lesson Map | Next > Variables
Here is a start on the assignment. Type the following code into your Liberty BASIC editor, or copy it and paste it. Run it and see how it works. If it works fine, use your imagination to extend the conversation.
Lesson Map | Next > Variables
Here is a start on the assignment. Type the following code into your Liberty BASIC editor, or copy it and paste it. Run it and see how it works. If it works fine, use your imagination to extend the conversation.
'This program will ask user for first and last names,
'then greet the user, using the names he typed.
input "Hello. What is your first name? ";FirstName$
input "Please type your last name. ";LastName$
print "It's nice to meet you, " + FirstName$ + " " + LastName$
Lesson Map | Next > Variables