Example
<example name = 'Title' >
<description>Showcasing the ability to print numbers in lua</description>
<code>
local a = 1
print(a)
</code>
<code name="My second code block">
local str = "yay hi"
</code>
<output>1</output>
</example>
Example: Title
Showcasing the ability to print numbers in lua
Code
local a = 1
print(a)
My second code block
local str = "yay hi"
Output: 1