Lisp inspired PL w/ curly brackets.
"this is example code for a factorial!"
"comments can just be strings that float around"
{set fact {fun x (
{if {= {arg x} 0} (
{give 1}
) (
{give {* {arg x} {fact {- {arg x} 1}}}}
)}
)}}
{print {fact 5}} "outputs `120`"