Hello, world!
Hello, world!
I’ve never been much of a blogger, but after writing more for the Ontarion this past term, I’ve decided to blog more. It’s not the new year yet, but I think this is a good start.
Today also happens to be December 25th, so Merry Christmas everyone!
For the sake of testing syntax highlighting in Jekyll, here are some Hello World programs:
In C:
#include <stdio.h>
int main(int argc, const char* argv[]){
printf("Hello, world!\n");
return 0;
}
In Java:
class HelloWorld{
public static void main(String[] args){
System.out.println("Hello, world!");
}
}
In Python:
def helloWorld():
print ('Hello, world!')