This commit is contained in:
Mike Farah
2025-12-08 20:30:47 +11:00
parent b4d8131197
commit 65e79845d4
5 changed files with 179 additions and 24 deletions
+8
View File
@@ -0,0 +1,8 @@
# Arithmetic with literals and application-provided variables
sum = 1 + addend
# String interpolation and templates
message = "Hello, ${name}!"
# Application-provided functions
shouty_message = upper(message)