goon

goon

https://git.tonybtw.com/goon.git git://git.tonybtw.com/goon.git
292 bytes raw
1
// String interpolation
2
3
let app_name = "goon";
4
let version = 1;
5
let author = "tony";
6
7
{
8
    title = "${app_name} v${version}";
9
    credit = "Created by ${author}";
10
    path = "/home/${author}/.config/${app_name}";
11
12
    // Escaping $ with \$
13
    template = "Use \${var} for interpolation";
14
}