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
source
share