Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 164 Bytes

multiple_value_assigment.md

File metadata and controls

17 lines (12 loc) · 164 Bytes

Multiple Value Assignment

  1. How can you write the following code differently but have the same result?
a=1
b=1
c=1

Solution

a=b=c=1