To get started, make sure you have installed Lagmite on your machine. Now, before using Lagmite for the first time, you will need to know two fundamental concepts on Lagmite’s processing and how it works:
[text] type card stores text, and the {lwr} task card allows text to be displayed in lowercase letters.When working with programming languages, it is usually best to learn how to display “Hello World” in the terminal. To do so, use the disp function, followed by the [text] type card, and type “Hello World”.
disp [text] Hello World
//Expected output: Hello World
“Hello World” might not be attractive, so let’s display it in alternating case!
disp [text] Hello World {alt}
//Expected output: hElLo wOrLd