I am new to ASNA Visual RPG. I spent hours in searching how to print a string in ASNA Visual RPG 9.x. But no luck on finding how to print a simple "hello world" String.
Can someone show me how to print "hello world" in the console?
Example in VB (hope that you could translate it to ASNA Visual RPG)
Sub Main ()
Dim text As String
text = "Hello World"
Console.WriteLine(text)
Console.Read()
End Sub
Thanks