Skip to content

Instantly share code, notes, and snippets.

@stablexbt
Last active March 8, 2019 18:19
Show Gist options
  • Select an option

  • Save stablexbt/2e42bf5fa40177c4955eb7c0bc765d01 to your computer and use it in GitHub Desktop.

Select an option

Save stablexbt/2e42bf5fa40177c4955eb7c0bc765d01 to your computer and use it in GitHub Desktop.
#include <eosiolib/eosio.hpp>
#include <eosiolib/print.hpp>
using namespace eosio;
class hello : public eosio::contract {
public:
using contract::contract;
void hi() {
print( "Hello, World");
}
};
EOSIO_ABI( hello, (hi) )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment