In the following example from the documentation, are strings concatenated at compile time?

template foo(string s) {
  string bar() { return s ~ " betty"; }
}

void main() {
  writefln("%s", foo!("hello").bar()); // prints: hello betty
}

Reply via email to