main.js 82 B

12345678
  1. //assign: evaluation
  2. /*
  3. var (a = 5);
  4. var b, c;
  5. b = (a * 5);
  6. b = c = (b/2);
  7. */