Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
autorake / examples / dlcpp / hello.cpp
Size: Mime:
//
//  hello.cpp  --  Say "Hello, world!"
//

#include "hello.h"

#include <iostream>

void hello_init(void)
{
    std::cout << "hello loaded" << '\n';
}

void hello_fini(void)
{
    std::cout << "hello before unload" << '\n';
}


void hello( void)
{
    std::cout << "Hello, world!" << '\n';
}