- Vocabulary: variables, data types, comments, truncate
- To identify the characteristics of different data types, namely: string, integer, and float
- To store and access data in variables
- To print values, variables, or a combination to the screen using both
print
andputs
- To join strings using both string concatenation and string interpolation
- To understand the difference between fixnum division (truncates) and float division (does not truncate)
- To get information from the user using
gets.chomp
- To write and debug Ruby code
Ruby is pretty smart and understands lots of things in a way similar to how people do. Spoken languages are divided into part of speech (like verbs, adjectives, and nouns). Similarly, programming languages have their own grammar. The part of speech we will cover here are values, types, variables, commands, and comments.