Vulcan.NET Code Examples

Vulcan.NET  "Hello World"  Command line version
FUNCTION Start AS VOID
    ? "Hello World"
RETURN

 


Vulcan.NET "Hello World" MessageBox() version
REFERENCES "System.Windows.Forms"
USING 
      System.Windows.Forms

FUNCTION Start( ) AS VOID
    MessageBox.Show( "Hello Vulcan.NET World, this is a message box test",;
        "Title Caption Vulcan.NET Message Box Test")
RETURN