Closed rzuckerm closed 1 month ago
I've looked through the documentation, but I cannot figure out how to do string concatenation in a terra function. How is this done?
Terra strings are just C strings. You could use any C library function, such as strncat, to concatenate them. Or there may be other C libraries with nicer ergonomics, but it would be up to you to find them.
strncat
I've looked through the documentation, but I cannot figure out how to do string concatenation in a terra function. How is this done?