Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 245 Bytes

copying_variables.md

File metadata and controls

9 lines (5 loc) · 245 Bytes

Copying Variables

  1. True or False?

Running var = 3 creates an object. Running another_var = var creates another object with the value of var

Solution

Click here to view the solution.