fork download
  1. Option Explicit
  2. Option Strict
  3.  
  4. class X
  5. Public Shared Sub Main()
  6. HOGE(Nothing)
  7. End Sub
  8. Public Shared Sub HOGE(x As fuga)
  9. System.Console.WriteLine(x.p)
  10. End Sub
  11. End Class
  12.  
  13. Structure fuga
  14. public p As Integer
  15. End Structure
  16.  
stdin
Standard input is empty
compilation info
Visual Basic.Net Compiler version 0.0.0.5914 (Mono 2.4.2 - r)
Copyright (C) 2004-2008 Rolf Bjarne Kvinge. All rights reserved.


Assembly 'prog, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' saved successfully to '/home/l3uVEd/prog.exe'.
Compilation successful
Compilation took 00:00:01.0460590
stdout
0