You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
5.9 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Programming Language Checklist</title>
  5. <link rel="shortcut icon" type="image/png" href="/favicon.ico"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <style>
  8. body {
  9. font-size: 16px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <tt>
  15. Programming Language Checklist<br>
  16. by <a href="https://www.mcmillen.dev">Colin McMillen</a>, <a href="http://jcreed.org">Jason Reed</a>, and <a href="https://elly.town/">Elly Fong-Jones</a>, 2011-10-10.
  17. <br>
  18. <p>
  19. <pre>
  20. You appear to be advocating a new:
  21. [ ] functional [ ] imperative [ ] object-oriented [ ] procedural [ ] stack-based
  22. [ ] "multi-paradigm" [ ] lazy [ ] eager [ ] statically-typed [ ] dynamically-typed
  23. [ ] pure [ ] impure [ ] non-hygienic [ ] visual [ ] beginner-friendly
  24. [ ] non-programmer-friendly [ ] completely incomprehensible
  25. programming language. Your language will not work. Here is why it will not work.
  26. You appear to believe that:
  27. [ ] Syntax is what makes programming difficult
  28. [ ] Garbage collection is free [ ] Computers have infinite memory
  29. [ ] Nobody really needs:
  30. [ ] concurrency [ ] a REPL [ ] debugger support [ ] IDE support [ ] I/O
  31. [ ] to interact with code not written in your language
  32. [ ] The entire world speaks 7-bit ASCII
  33. [ ] Scaling up to large software projects will be easy
  34. [ ] Convincing programmers to adopt a new language will be easy
  35. [ ] Convincing programmers to adopt a language-specific IDE will be easy
  36. [ ] Programmers love writing lots of boilerplate
  37. [ ] Specifying behaviors as "undefined" means that programmers won't rely on them
  38. [ ] "Spooky action at a distance" makes programming more fun
  39. Unfortunately, your language (has/lacks):
  40. [ ] comprehensible syntax [ ] semicolons [ ] significant whitespace [ ] macros
  41. [ ] implicit type conversion [ ] explicit casting [ ] type inference
  42. [ ] goto [ ] exceptions [ ] closures [ ] tail recursion [ ] coroutines
  43. [ ] reflection [ ] subtyping [ ] multiple inheritance [ ] operator overloading
  44. [ ] algebraic datatypes [ ] recursive types [ ] polymorphic types
  45. [ ] covariant array typing [ ] monads [ ] dependent types
  46. [ ] infix operators [ ] nested comments [ ] multi-line strings [ ] regexes
  47. [ ] call-by-value [ ] call-by-name [ ] call-by-reference [ ] call-cc
  48. The following philosophical objections apply:
  49. [ ] Programmers should not need to understand category theory to write "Hello, World!"
  50. [ ] Programmers should not develop RSI from writing "Hello, World!"
  51. [ ] The most significant program written in your language is its own compiler
  52. [ ] The most significant program written in your language isn't even its own compiler
  53. [ ] No language spec
  54. [ ] "The implementation is the spec"
  55. [ ] The implementation is closed-source [ ] covered by patents [ ] not owned by you
  56. [ ] Your type system is unsound [ ] Your language cannot be unambiguously parsed
  57. [ ] a proof of same is attached
  58. [ ] invoking this proof crashes the compiler
  59. [ ] The name of your language makes it impossible to find on Google
  60. [ ] Interpreted languages will never be as fast as C
  61. [ ] Compiled languages will never be "extensible"
  62. [ ] Writing a compiler that understands English is AI-complete
  63. [ ] Your language relies on an optimization which has never been shown possible
  64. [ ] There are less than 100 programmers on Earth smart enough to use your language
  65. [ ] ____________________________ takes exponential time
  66. [ ] ____________________________ is known to be undecidable
  67. Your implementation has the following flaws:
  68. [ ] CPUs do not work that way
  69. [ ] RAM does not work that way
  70. [ ] VMs do not work that way
  71. [ ] Compilers do not work that way
  72. [ ] Compilers cannot work that way
  73. [ ] Shift-reduce conflicts in parsing seem to be resolved using rand()
  74. [ ] You require the compiler to be present at runtime
  75. [ ] You require the language runtime to be present at compile-time
  76. [ ] Your compiler errors are completely inscrutable
  77. [ ] Dangerous behavior is only a warning
  78. [ ] The compiler crashes if you look at it funny
  79. [ ] The VM crashes if you look at it funny
  80. [ ] You don't seem to understand basic optimization techniques
  81. [ ] You don't seem to understand basic systems programming
  82. [ ] You don't seem to understand pointers
  83. [ ] You don't seem to understand functions
  84. Additionally, your marketing has the following problems:
  85. [ ] Unsupported claims of increased productivity
  86. [ ] Unsupported claims of greater "ease of use"
  87. [ ] Obviously rigged benchmarks
  88. [ ] Graphics, simulation, or crypto benchmarks where your code just calls
  89. handwritten assembly through your FFI
  90. [ ] String-processing benchmarks where you just call PCRE
  91. [ ] Matrix-math benchmarks where you just call BLAS
  92. [ ] Noone really believes that your language is faster than:
  93. [ ] assembly [ ] C [ ] FORTRAN [ ] Java [ ] Ruby [ ] Prolog
  94. [ ] Rejection of orthodox programming-language theory without justification
  95. [ ] Rejection of orthodox systems programming without justification
  96. [ ] Rejection of orthodox algorithmic theory without justification
  97. [ ] Rejection of basic computer science without justification
  98. Taking the wider ecosystem into account, I would like to note that:
  99. [ ] Your complex sample code would be one line in: _______________________
  100. [ ] We already have an unsafe imperative language
  101. [ ] We already have a safe imperative OO language
  102. [ ] We already have a safe statically-typed eager functional language
  103. [ ] You have reinvented Lisp but worse
  104. [ ] You have reinvented Javascript but worse
  105. [ ] You have reinvented Java but worse
  106. [ ] You have reinvented C++ but worse
  107. [ ] You have reinvented PHP but worse
  108. [ ] You have reinvented PHP better, but that's still no justification
  109. [ ] You have reinvented Brainfuck but non-ironically
  110. In conclusion, this is what I think of you:
  111. [ ] You have some interesting ideas, but this won't fly.
  112. [ ] This is a bad language, and you should feel bad for inventing it.
  113. [ ] Programming in this language is an adequate punishment for inventing it.
  114. </pre>
  115. </tt>
  116. </body>
  117. </html>