mirror of
https://github.com/mikefarah/yq.git
synced 2026-03-10 15:54:26 +00:00
8 lines
210 B
HCL
8 lines
210 B
HCL
# Arithmetic with literals and application-provided variables
|
|
sum = 1 + addend
|
|
|
|
# String interpolation and templates
|
|
message = "Hello, ${name}!"
|
|
|
|
# Application-provided functions
|
|
shouty_message = upper(message) |