This commit is contained in:
Mike Farah
2025-12-07 20:08:29 +11:00
parent bd3a647650
commit 7923d04bdd
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)