From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 #include "mylib.hpp"#include <string>namespace Foo { int mul3(int value) { std::string str = "abcde"; value *= 3; return value; }}
#include "mylib.hpp"
#include <string>
namespace
Foo {
int
mul3(
value) {
std::string str =
"abcde"
;
value *= 3;
return
value;
}