Hello World¶
The simplest EasyLang program prints a message to the screen using the so print statement.
Example: Hello World¶
so print "Hello, EasyLang!"
Output:¶
Hello, EasyLang!
This is the most basic structure of an EasyLang program—no boilerplate, no imports, no setup.
Explanation¶
so printis the print command- Everything inside quotes
" "is treated as text - EasyLang executes code line-by-line