Hello World in Soplang
A classic first program to demonstrate Soplang syntax.
Hello World
The classic "Hello, World!" program is the traditional first step in learning any programming language.
The Code
1
qor("Hello, World!")
Explanation
qor: This is the built-in function for printing output to the console (equivalent toprintin Python orconsole.login JavaScript)."Hello, World!": This is a string literal.