How to concatenate strings? #21538
Answered
by
linux-time
linux-time
asked this question in
Q&A
-
|
Beta Was this translation helpful? Give feedback.
Answered by
linux-time
Oct 18, 2024
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried .test = .message + .foo will report an error. You need to write it like this: .test = string!(.message) + string!(.foo)