rustgn

11 commits
Updated 2026-05-09 17:23:41
libraries/hello_cc/src
libraries/hello_cc/src/lib.cc
#include "hello.h"
#include <iostream>

void hello(const char *name) {
  std::cout << "Hello, " << name << "!" << std::endl;
}