13 lines
144 B
Plaintext
13 lines
144 B
Plaintext
// heheheha comment
|
|
|
|
x = 5
|
|
puts x + 3
|
|
puts 5 * 7
|
|
puts 3.0 / 2
|
|
puts 10 - 3
|
|
|
|
// Uh oh it's the order of operations
|
|
|
|
puts 5 + 3 * 7
|
|
puts 5 * 3 + 7
|