hcl/test-fixtures/multiline_literal.hcl
James Nugent a55c206bd0 Support multiline string literals in HCL
This allows multiline strings to be parsed in order to make HIL
interpolations nicer in Terraform:

```
my_complex_thing = "${merge(var.list1,
                            var.list2,
                            var.list3)}"
```
2016-07-11 14:33:17 -06:00

2 lines
35 B
HCL

multiline_literal = "hello
world"