tisdag 20 september 2016

Hello, World!

This is my first blogpost ever, so exciting! As a start here is how to print "Hello, World!" in various languages that I frequently code in :D


C says hello:
#include <stdio.h>
int main(void) {
printf("Hello, World!\n");
return 0;
}
view raw hello.c hosted with ❤ by GitHub


Python says hello:
print "Hello, World!"
view raw hello.py hosted with ❤ by GitHub


Ruby says hello:
puts "Hello, World!"
view raw hello.rb hosted with ❤ by GitHub

Inga kommentarer:

Skicka en kommentar