25 lines
487 B
Plaintext
25 lines
487 B
Plaintext
# This just has some stuff I use to make sure the extension is working!
|
|
|
|
like-a-function = do x y z:
|
|
echo 'This is a function with parameters: $x, $y, $z'
|
|
end
|
|
|
|
value = if true:
|
|
'This is true!'
|
|
else:
|
|
'This is false!'
|
|
end
|
|
|
|
echo 'value is $(value)'
|
|
|
|
html lang=en do:
|
|
head do:
|
|
meta charset='UTF-8'
|
|
meta name='viewport' content='width=device-width, initial-scale=1.0'
|
|
end
|
|
|
|
body do:
|
|
h1 'Hello, World!'
|
|
p 'This is a sample HTML generated by the extension.'
|
|
end
|
|
end |