1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-02-13 13:28:27 +02:00
chroma/lexers/testdata/go-text-template.actual

12 lines
150 B
Plaintext
Raw Normal View History

{{/*
This is a multiline comment
*/}}
{{ $myVar := 2 }}
{{ $myVar = 4 }}
{{ range $idx, $value := $variable }}
Hello {{ $idx }}
2021-02-08 12:24:52 +11:00
{{ end }}
{{ $ }}