yq/examples/sample.hcl
2025-12-08 20:30:47 +11:00

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)