First Post
July 7, 2015
Hello, World !
Finally ! I have setup this blog using the awesome static site generator Jekyll. Now I can blog like a Hacker.
#Python
def say_hello(name):
print 'Hello, '+name+' !'
#=> Prints Hello, World ! to STDOUT
say_hello('World')
//C++
#include <iostream>
#include <string>
void say_hello(std::string name){
std::cout << "Hello, " << name << " !";
}
int main(void){
say_hello("World");
return 0;
}