fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. ' your code goes here
  6. Dim x as Double = 2.0
  7. x = 3.0 ^ 4
  8. Console.WriteLine ("x=" & x)
  9. End Sub
  10. End Class
Success #stdin #stdout 0.04s 24120KB
stdin
Standard input is empty
stdout
x=81