The Full Wiki



More info on LOLCODE

LOLCODE: Wikis

  
  

Note: Many of our articles have direct quotes from sources you can cite, within the Wikipedia article! This article doesn't yet, but we're working on it! See more info or our list of citable articles.

Encyclopedia

Updated live from Wikipedia, last check: June 03, 2012 15:14 UTC (53 seconds ago)

From Wikipedia, the free encyclopedia

LOLCODE
Usual file extensions .lol, .lols
Paradigm esoteric
Appeared in 2007
Designed by Adam Lindsay AKA the Lolcat dude!
Influenced by Lolcats

LOLCODE is an esoteric programming language inspired by the language expressed in examples of the lolcat Internet meme.[1] The language was created in 2007 by Adam Lindsay, researcher at the Computing Department of Lancaster University.[2]

The language is not clearly defined in terms of operator priorities and correct syntax, but several functioning interpreters and compilers already exist. The language has been proven Turing-complete by the implementation of a brainfuck interpreter.[3]

Contents

Language structure and examples

LOLCODE's keywords are drawn from the heavily compressed (shortened) patois of the lolcat Internet meme. Here follows a Hello world program and a simple program to output a file to a monitor. Similar code was printed in the Houston Chronicle.[1]

Example 1[4]

HAI
CAN HAS STDIO?
VISIBLE "HAI WORLD!"
KTHXBYE
Code Comment
HAI In all LOLCODE programs, HAI introduces the program.
CAN HAS [FILE]? In many programming languages, one of the first statements will be a library inclusion for common functions such as input and output. Typically this is included by a call such as #include <stdio.h> [stdio standing for standard input/output library]. This command is a tongue in cheek corruption of that, asking if a file is obtainable, obtaining it if possible, and raising an exception if not.[5] It is there primarily for authenticity — in fact, it is ignored in current implementations of LOLCODE.
VISIBLE [MESSAGE] prints a message to the screen.
KTHXBYE HAI introduces the program, so KTHXBYE (meaning "Okay thanks, bye") terminates it.

Example 2

 HAI
 CAN HAS STDIO?
 PLZ OPEN FILE "LOLCATS.TXT"?
     AWSUM THX
         VISIBLE FILE
     O NOES
         INVISIBLE "ERROR!"
 KTHXBYE

In this example[4], commands to open a file (PLZ OPEN FILE "NAME"? — "Please try to open a file?"), and error handling (AWSUM THX — "Awesome, thanks!", and O NOES — "Oh no!") are introduced.

Other commands include I HAS A variable for declaring variables, variable R value ("variable [is/are/being] value") for assigning them, sending error messages to the front end via INVISIBLE instead of VISIBLE, and BTW ("by the way") to denote a comment, making the parser ignore the rest of the line. Loops are created with IM IN YR label (from an internet meme "I'm in your ___"), and ended with IM OUTTA YR label. Loops lack counters or conditions, and thus do not cease inherently. They must be manually broken with the ENUF, "enough" in Leetspeak (old version GTFO) [6] command. Loops can also be ended with the conditional IZ command:

Example 3

HAI
CAN HAS STDIO?
I HAS A VAR
IM IN YR LOOP
   UP VAR!!1
   IZ VAR BIGGER THAN 10? KTHX
   VISIBLE VAR
IM OUTTA YR LOOP
KTHXBYE

[4]

This simple program displays the numbers 1–10 and terminates (as of specification 1.0). The same program as of specification 1.2 is (assuming VAR starts at 0):

HAI
CAN HAS STDIO?
IM IN YR LOOP UPPIN YR VAR TIL BOTH SAEM VAR AN 10
    VISIBLE SUM OF VAR AN 1
IM OUTTA YR LOOP
KTHXBYE

Implementations

The first LOLCODE implementation was a PHP parser written by Jeff Jones.[7][8] The parser's website was also the first website using LOLCODE as an actual web scripting language. Being open source with a BSD style license, it has been forked and used by multiple websites to implement LOLCODE scripting. The winning Pecha Kucha presentation at PHP Works 2008 was about this parser.[9][10]

There is a .NET compiler for LOLCODE written by Nick Johnson,[11] and featured in Microsoft developer training seminars, TechEd 2007 Conference (Australia).[12][13][14]

PL/LOLCODE, a project headed by Josh Tolley, makes LOLCODE available as a server-side programming language inside PostgreSQL.[15]

Microsoft Dynamic Language Runtime has an implementation of LOLCODE for testing purposes.[16]

A JavaScript interpreter is also available [17]

There is also a LOLCODE compiler included with the Parrot virtual machine as one of the languages demonstrating the use of Parrot's compiler tools.[18]

A low-level interpreter written in C exists, maintained by Justin J. Meza, to provide native LOLCODE interpretation on a variety of platforms.[19]

Related projects

LOLCODE has also inspired LOLPython, written by Andrew Dalke. LOLPython uses LOL-inspired syntax similar to that of LOLCODE, but with a Python-like style. It operates by translating the LOLPython source into Python code.[20]

References

  1. ^ a b Dwight Silverman (2007-06-06). "I'm in ur newspaper writin mah colum". Chron.com. http://www.chron.com/disp/story.mpl/business/silverman/4862013.html. Retrieved 2007-06-06. 
  2. ^ "Lancaster University Computing Department News". Comp.lancs.ac.uk. http://www.comp.lancs.ac.uk/department/news.html. Retrieved 2009-06-09. 
  3. ^ Arachnid. "Proof that LOLCode is turing complete:BrainF*** interpreter in LOLCode". forum.lolcode.com. http://forum.lolcode.com/viewtopic.php?id=51. Retrieved 2008-10-05. 
  4. ^ a b c Adam Lindsay (2007-05-25). " "LOLCODE main page". lolcode.com. http://www.lolcode.com". Retrieved 2007-10-02. 
  5. ^ "keywords:can-has · LOLCODE". http://lolcode.com/keywords/can-has. Retrieved 2008-02-10. 
  6. ^ SORN.net
  7. ^ "First Parser Comment". Lindsay.at. http://lindsay.at/blog/archive/2007/05/21/lolcode.html#comment853. Retrieved 2009-06-09. 
  8. ^ "Tetraboy's LOLCODE parser". Tetraboy.com. http://www.tetraboy.com/lolcode/. Retrieved 2009-06-09. 
  9. ^ ""The Best Web Language: LOLCODE" Slides". Slideshare.net. http://www.slideshare.net/Tetraboy/the-best-web-language-lolcode. Retrieved 2009-06-09. 
  10. ^ PHP Works
  11. ^ LOLCODE .NET compiler at Google Code
  12. ^ TechEd Day 2: Microsoft announces LOLCode support, Long Zheng
  13. ^ LOLcode in next Visual Studio? For young and funny cats, NetworkWorld.com
  14. ^ "Video of LOLCODE presentation at TechEd 2007". Blip.tv. 2007-08-17. http://blip.tv/file/343052. Retrieved 2009-06-09. 
  15. ^ PL/LOLCODE, pgFoundry
  16. ^ Deep DLR, John Lam and Martin Maly
  17. ^ "LolCode". Fullvolume.co.uk. http://fullvolume.co.uk/static/lolcode/. Retrieved 2009-06-09. 
  18. ^ "Lightning-Parrot". lolcode.com. http://lolcode.com/news/lightning-parrot. Retrieved 2009-06-20. 
  19. ^ http://www.icanhaslolcode.org/ I Can Has lolcode? - an efficient LOLCODE interpreter written in C.
  20. ^ "LOLPython". Dalkescientific.com. 2007-06-01. http://www.dalkescientific.com/writings/diary/archive/2007/06/01/lolpython.html. Retrieved 2009-06-09. 

External links








Got something to say? Make a comment.
Your name
Your email address
Message
Please enter the solution to case below
12+8=