Loading

Paste #pqxxhvpef

  1. variant 1)
  2.  
  3. switch(..., blah, num_houses >= 10) {
  4.  1: return 0;
  5.  return 1;
  6. }
  7.  
  8. ...
  9. graphics {
  10.  ...
  11.  construction_check: blah;
  12. }
  13.  
  14. ==========
  15. variant 2)
  16.  
  17. graphics {
  18.  ...
  19.  construction_check: (num_houses >= 10)?0:1;
  20. }
  21.  
  22. ==========
  23. variant 3)
  24.  
  25. graphics {
  26.  ...
  27.  construction_check: num_houses < 10;
  28. }

Comments