const a = "Hello, world!\n";
const b = a.length();
const c = a[1:3];

proc main()
{
    "a = ", a, '\n';
    "b = ", b, '\n';
    "c = ", c, '\n';
}