Inspired by
this, I wrote a piece of very simple code today that says "Merry Christmas" in 2 languages.
The code goes like this:
Code:
#include <stdio.h>
#define main() int main(void){printf("Merry Christmas and Happy New Year!\n From C land, with love.\n");return 0;}
#define BE_HAPPY /*
def main(): print "Merry Christmas and Happy New Year!\n From Python land, with love."
#*/
main()
It can either be compiled with GCC or be interpreted by Python.