Sort:  

First thing you learn while learning programming.

Hello! Thanks for being an early adopter. Feel free to let us know how you found Steemit in the thread here:

https://steemit.com/steem/@steemrollin/welcome-how-did-you-hear-about-steem-and-steemit

C++ Hello

#include <iostream>

int main(){
    std::cout << "hello world!" << endl;
    return 0;
}