The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

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