fork(1) download
  1. template<class Type>
  2. struct Node {};
  3.  
  4. typedef int DataType;
  5.  
  6. int main() {
  7. Node<DataType> head;
  8. DataType data;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty