// Tenet code sandbox
do {
    print-line("This is a sandbox to try out Tenet code.");
    print-line("");
    some-tips(a-func-is: "fun");
    print-line("");
    print-line("Use the run button to run the code.");
}

fun some-tips(a-func-is: Str) {
    print-line("Tips for writing tenet");
    print-line("----------------------");
    print-line("Use a do-block to do things.");
    print-line("A function is " ++ a-func-is ++ ".");
}
  

      [ Use `Run` above to run your code. ]