This is just a test…!

Bash:

#!/bin/bash
echo "Hello World!";

C:

#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello, World!");
   return 0;
}

JSON:

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

Python:

#!/usr/bin/env python
print "Hello World"

Comments