blob: ba58af13038ac0ab20e990bbf4f08187470a83b5 [file] [log] [blame] [view]
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01001[TOC](Readme.md) [Prev](operators.md) [Next](interpolfield.md)
2
Marcel van Lohuizenaf0932f2019-01-11 13:03:56 +01003_Expressions_
4
Marcel van Lohuizen75cb0032019-01-11 12:10:48 +01005# Interpolation
6
7String and bytes literals support interpolation.
8
9Any valid CUE expression may be used inside the escaped parentheses.
10Interpolation may also be used in multiline string and byte literals.
11
12<!-- CUE editor -->
13```
14"You are \( cost - budget ) dollars over budget!"
15
16cost: 102
17budget: 88
18```
19
20<!-- result -->
21```
22"You are 14 dollars over budget!"
23```