Last active
March 8, 2019 18:19
-
-
Save stablexbt/2e42bf5fa40177c4955eb7c0bc765d01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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