Your challenge is simple. You need to write a program that prints to either STDOUT or a file the year the language it is written in was released. Because this is such a simple task, the twist is that it must be written in as many different languages as possible.
Your score is the total number of different years that are correctly printed.
For each language you use, you must
Specify which version of the language you are using. (If there are multiple versions)
Specify what year that version was first released, and
Provide a link to a page proving the date of your version/language.
Any one of these counts as release date proof, as long as it specifies the version number (if applicable) and a release date.
A wikipedia page.
An esolangs page.
The language's official website. A github page or similar counts, as long as it has a release date. (Latest commit does not count, unless there is a version number somewhere in the code)
If there are not multiple versions or releases of a language, just use the initial release date of the language.
Minor versions of the same language do count as different languages, as long as they come from different years and still produce the correct output. You may not use any builtins that give you information (including release date) about the current version of the language you are using. For example, this is an invalid python submission:
import platform
i = platform.python_version()
if i == '3.5':
print(2015)
if i == '3.4':
print(2014)
if i == '3.3':
print(2012)
...
Whichever submission correctly prints the most distinct years wins!
Rules
Each program must print out the language year and nothing more. A trailing newline (windows style or *nix style) is allowed.
No programs may take any input.
In case of a tie, the shortest code scored in bytes wins. You may use whatever encoding you like for this, but all programs must you use the same encoding.
Any of the programs may print to STDERR, or throw runtime/compile time errors and warnings as long as the correct output is still printed to STDOUT or a file.
Different languages may use different IO methods, but they most all be full programs, (functions not allowed for this challenge) and follow one of our default IO methods allowed.
Happy golfing polyglotting!
Each program must print out the language year and nothing more. A trailing newline (windows style or *nix style) is allowed.– DJMcMayhem yesterday