#include "mylib.hpp"

#include <string>

namespace Foo {
  int mul3(int value) {
    
    std::string str = "abcde";
    
    value *= 3;
    
    return value;
  }
}