Hello World with ASNA Visual RPG

I am new to ASNA Visual RPG. I spent several hours searching for how to print a string in ASNA Visual RPG 9.x. But no luck finding how to print a simple "hello world" line.

Can someone show me how to print "hello world" in the console?

Example in VB (hope you can translate it into ASNA Visual RPG)

Sub Main ()
    Dim text As String
    text = "Hello World"
    Console.WriteLine(text)
    Console.Read()
End Sub

thank

+3
source share
1 answer

Sorry for all the trouble guys .. I just found out the answer. I am using Visual Studio 2008 for ASNA Visual RPG. To print Hello World, all we need to do is enter:

System.Console.WriteLine("Hello World")
+1
source

All Articles