Hi, amazing Rust review
Just a small typo here: // C++ const char* t = "some text"; std::string s(text); std::string a = s + " in C++";
should be
// C++ const char* *text *= "some text"; std::string s(text); std::string a = s + " in C++";
Hey @rafal98 ,
happy you like it and you're right! Fixed, but I did it like in the Rust code and give the t :).
t
cheers Philipp
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Stay on the cutting edge, and shape tomorrow
Hi, amazing Rust review
Just a small typo here:
// C++
const char* t = "some text";
std::string s(text);
std::string a = s + " in C++";
should be
// C++
const char* *text *= "some text";
std::string s(text);
std::string a = s + " in C++";
Hey @rafal98 ,
happy you like it and you're right! Fixed, but I did it like in the Rust code and give the
t:).cheers Philipp