fork download
  1. class XYZ
  2. Public Shared Sub Main()
  3. Dim x As Double
  4. x = 1
  5. For i As Integer = 0 to 15
  6. x = x * 16
  7. Next i
  8. System.Console.WriteLine(x)
  9.  
  10. Dim y As Decimal = 1D
  11. For i As Integer = 0 to 15
  12. y = y * 16D
  13. Next i
  14. System.Console.WriteLine(y)
  15. End Sub
  16. End Class
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/Cd5i1z/prog.exe'.
Compilation successful
Compilation took 00:00:01.0748100
stdout
1.84467440737096E+19
18446744073709551616