Programming Languages
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
Dan Tobias (Talk | contribs) |
||
Line 6: | Line 6: | ||
|caption=Babbage's Difference Engine | |caption=Babbage's Difference Engine | ||
}} | }} | ||
− | + | '''Programming languages''' are languages expected to be executed (interpreted, compiled, etc.) by a machine in order to perform operations or algorithms. They are distinct from markup languages, which represent the structure of a document rather than specific operations to be performed, though it is possible to combine both in a document (e.g., HTML containing embedded JavaScript, or PHP code which includes HTML). Programming language code is stored as [[source code]] which may be directly interpreted by a machine or compiled or assembled into [[executables]]. | |
− | Programming languages are languages expected to be executed (interpreted, compiled, etc.) by a machine in order to perform operations or algorithms. They are distinct from markup languages, which represent the structure of a document rather than specific operations to be performed, though it is possible to combine both in a document (e.g., HTML containing embedded JavaScript, or PHP code which includes HTML). Programming language code is stored as [[source code]] which may be directly interpreted by a machine or compiled or assembled into [[executables]]. | + | |
* [[ActionScript]] (Flash) | * [[ActionScript]] (Flash) | ||
Line 78: | Line 77: | ||
* A comprehensive list of over 2000 programming languages and a small sample programs for each of them is available [http://www.99-bottles-of-beer.net/ here] | * A comprehensive list of over 2000 programming languages and a small sample programs for each of them is available [http://www.99-bottles-of-beer.net/ here] | ||
* [http://rosettacode.org/ Rosetta Code] attempts to present solutions to the same task in different programming languages. | * [http://rosettacode.org/ Rosetta Code] attempts to present solutions to the same task in different programming languages. | ||
− | |||
− | |||
* [http://storify.com/carlzimmer/coding-for-middle-school-girls?utm_content=storify-pingback&utm_source=t.co&utm_campaign=&awesm=sfy.co_s2LP&utm_medium=sfy.co-twitter Coding for middle-school girls] (tips on introducing them to programming) | * [http://storify.com/carlzimmer/coding-for-middle-school-girls?utm_content=storify-pingback&utm_source=t.co&utm_campaign=&awesm=sfy.co_s2LP&utm_medium=sfy.co-twitter Coding for middle-school girls] (tips on introducing them to programming) | ||
− | |||
* [http://langpop.corger.nl/ Programming language popularity chart (based on Github and StackOverflow activity)] | * [http://langpop.corger.nl/ Programming language popularity chart (based on Github and StackOverflow activity)] | ||
* [http://www.irishtimes.com/business/sectors/technology/flowering-of-a-nation-s-youth-through-learning-the-art-of-computer-code-1.1371382 Flowering of a nation’s youth through learning the art of computer code] | * [http://www.irishtimes.com/business/sectors/technology/flowering-of-a-nation-s-youth-through-learning-the-art-of-computer-code-1.1371382 Flowering of a nation’s youth through learning the art of computer code] | ||
Line 89: | Line 85: | ||
* [http://lifehacker.com/which-programming-language-should-i-learn-first-1477153665 Which programming language should I learn first?] | * [http://lifehacker.com/which-programming-language-should-i-learn-first-1477153665 Which programming language should I learn first?] | ||
* [http://exple.tive.org/blarg/2013/10/22/citation-needed/ Why array indices start at zero; historical info] | * [http://exple.tive.org/blarg/2013/10/22/citation-needed/ Why array indices start at zero; historical info] | ||
+ | |||
+ | == Commentary == | ||
+ | * [http://boingboing.net/2013/02/27/what-most-schools-should-reall.html Why you should learn to program] | ||
+ | * [http://mentalfloss.com/article/53160/meet-refrigerator-ladies-who-programmed-eniac Meet the 'Refrigerator Ladies' Who Programmed the ENIAC] | ||
+ | * [http://devblog.avdi.org/2014/01/31/the-moderately-enthusiastic-programmer/ The Moderately Enthusiastic Programmer] | ||
+ | * [http://techcrunch.com/2013/10/10/my-experience-as-a-fourth-grade-hacker/ My Experience As A Fourth Grade Hacker] | ||
==Humor== | ==Humor== |
Revision as of 06:40, 1 February 2014
Programming languages are languages expected to be executed (interpreted, compiled, etc.) by a machine in order to perform operations or algorithms. They are distinct from markup languages, which represent the structure of a document rather than specific operations to be performed, though it is possible to combine both in a document (e.g., HTML containing embedded JavaScript, or PHP code which includes HTML). Programming language code is stored as source code which may be directly interpreted by a machine or compiled or assembled into executables.
- ActionScript (Flash)
- Ada
- ALGOL
- APL
- Arduino programming language
- Assembly language (various versions for different machine architectures)
- B
- BASIC (Beginner's All Purpose Symbolic Instruction Code)
- Batch file (DOS, Windows, OS/2)
- BCPL
- BlooP, FlooP, and GlooP
- Bourne shell script: .sh
- C
- C++
- C#
- ChordQL
- Clojure
- COBOL (COmmon Business-Oriented Language)
- COMAL
- CPL
- D
- dBase programming language (and related languages such as FoxPro and Clipper)
- Erlang
- FORTRAN (FORmula TRANslation)
- Go
- Graphics Programming Language (GPL) (mid-level language on TI computers)
- Haskell
- Hoon
- INTERCAL
- Java
- JavaScript (JScript, ECMAScript)
- JCL (Job Control Language; used on IBM mainframes)
- LISP
- Logo
- Lua
- Machine language (various versions for different machine architectures)
- Matlab
- MUMPS (Massachusetts General Hospital Utility Multi-Programming System)
- Music Macro Language
- Nock
- Objective-C (used in Mac and iOS development)
- Pascal
- Perl
- PHP
- Pixilang
- PL/I
- PostScript
- Programmable calculators
- Programmable Command Language (PCL), for TOPS-20
- Prolog
- Python
- RobotWar
- RPG
- Ruby
- Scheme
- Scratch
- Smalltalk
- SNOBOL
- SQL
- TRAC programming language
- TUTOR
- VBScript
- WMLScript
Interactive Fiction engines often use specialized programming languages for game development.
Resources
- A comprehensive list of over 2000 programming languages and a small sample programs for each of them is available here
- Rosetta Code attempts to present solutions to the same task in different programming languages.
- Coding for middle-school girls (tips on introducing them to programming)
- Programming language popularity chart (based on Github and StackOverflow activity)
- Flowering of a nation’s youth through learning the art of computer code
- Top 10 programming fonts
- What’s The Most Popular Programming Language?
- Things I Wish Someone Had Told Me When I Was Learning How to Code
- Which programming language should I learn first?
- Why array indices start at zero; historical info
Commentary
- Why you should learn to program
- Meet the 'Refrigerator Ladies' Who Programmed the ENIAC
- The Moderately Enthusiastic Programmer
- My Experience As A Fourth Grade Hacker
Humor
- A Brief, Incomplete, and Mostly Wrong History of Programming Languages
- Programming Language Checklist
- Programming languages as Tolkien characters
- Devil's Dictionary of Programming
- This Is Why You Shouldn't Interrupt A Programmer
- Random mashup generator of the King James Bible and a programming book
- What the computer code seen on screens in movies and TV shows actually does