fork download
  1. Tusing System;
  2. public module HelloWorld
  3. {
  4. public interface ITest
  5. {
  6. }
  7.  
  8. public class Test[T] where T : ValueType, ITest
  9. {
  10. public Value : Nullable[T];
  11. }
  12.  
  13. public Main() : void
  14. {
  15. Console.WriteLine("Hello world!");
  16. }
  17. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.nem:1:8:1:14: error: expected `;'
prog.nem:1:8:1:14: error: parse error near identifier `System': unexpected token after expression in sequence
prog.nem:2:1:2:7: error: parse error near keyword `public': unexpected keyword in expression context
prog.nem:2:8:2:14: error: expected `;'
prog.nem:2:8:2:14: error: parse error near keyword `module': unexpected token after expression in sequence
stdout
Standard output is empty