blob: b13afbde2061e250c72670a207047f60d496f829 [file] [log] [blame] [view]
[TOC](Readme.md) [Prev](operators.md) [Next](interpolfield.md)
_Expressions_
# Interpolation
String and bytes literals support interpolation.
Any valid CUE expression may be used inside the escaped parentheses.
Interpolation may also be used in multiline string and byte literals.
<!-- CUE editor -->
_interpolation.cue:_
```
"You are \( cost - budget ) dollars over budget!"
cost: 102
budget: 88
```
<!-- result -->
`$ cue eval interpolation.cue`
```
"You are 14 dollars over budget!"
```