From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#include "mylib.hpp"
#include <string>
namespace Foo {
int mul3(int value) {
std::string str = "abcde";
value *= 3;
return value;
}
}