Quake C programming language
The Quake C programming language, while more of a scripting language than a programming language was one of the finest additions to modern computer game design. Developed in 1996 by John Carmack, the Quake C language was developed to extend the life of the Quake first person shooter engine even after the game had been mastered.
Despite poor reviews by many of the leading magazines, and despite a public favoring of Duke Nukem 3D, Quake C allowed the quake engine to dominate the direction of the first person shooter genre. Thanks to Carmack's idea of extending computer game life by adding unlimited expandability an enormous internet community of gamers and programmers alike has arisen and nearly every modern multiplayer game is completely expandable. While they don't all use Quake C, Quake C was the first to truly popularize it.
Quake C as a programming language itself uses the same syntax as C, although is much more limited. For example Quake C does not allow the implementation of new types through either structures or objects. Quake C also does not support many of the 'obfuscation' abilities of the other C family languages. For example:
SomeFunction(getWidth());
would be an invalid Quake C statement. Other examples of these quirks include Quake C's inability to assign default values to variables. These minor limitations aside the Quake C programming or scripting language was one of the most powerful of its type for the time and defined a sub style of game design that is still employed today.