fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int $object = 42;
  6. cout << "GCC " << __VERSION__ << endl;
  7. cout << $object;
  8. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
GCC 5.1.1 20150711
42