lolcode – the dumbest programming language ever
Tags: c++, lolcode, programming
http://lolcode.com/ is a new programming language derived from the lolcats “scene” – if such a thing even exists. ugg.
example:
HAI
CAN HAS STDIO?
VISIBLE “HAI WORLD!”
KTHXBYE
c++ equivalent
#include
int main () {
cout << “HAI WORLD!”;
return 0;
}
