fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define LOW false
  5. #define HIGH true
  6.  
  7. void digitalWrite(int x, bool y)
  8. {
  9. cout << x << endl;
  10. }
  11.  
  12.  
  13. int main() {
  14. digitalWrite(10, LOW),(11, LOW),(12, LOW),(13,HIGH);
  15. return 0;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
10