fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct FunctionRelease
  5. {
  6. std::string firstOperand;
  7. std::string secondOperand;
  8. bool isTwoIdentifier = false;
  9. };
  10.  
  11. int main()
  12. {
  13. struct FunctionRelease functionRelease = { "v0", "v1", true };
  14. return 0;
  15. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
Standard output is empty