Files
2024-05-13 11:48:08 -04:00

14 lines
213 B
C++

#include <string>
#include "jlcxx/jlcxx.hpp"
std::string greet()
{
return "hello, world";
}
JLCXX_MODULE define_julia_module(jlcxx::Module& mod)
{
mod.method("greet", &greet, "documentation for greet");
}