multiple_value_assigment.md

April 15, 2022 ยท View on GitHub

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

Contents

  1. 1Multiple Value Assignment
  2. 1.1Solution