I'm planning a project where I want to write my code with pencil and paper.<p>However, the goal is to create working, robust software. It needs to actually run on computers, so I'll periodically transcribe to digital form. The deploy target is servers. Let's say one of the common VM types available on AWS.<p>Therefore, I'm trying to identify languages that are fast but fairly concise. For example, Ruby or Python would be good handwriting options, but they have slower execution speed. Rust and Java are fast, but verbose to write.<p>I'm thinking JS, Clojure, or Crystal might be the most practical choices. Any other suggestions?
Python with numba and @jit is quite fast <a href="https://numba.readthedocs.io/en/stable/user/jit.html" rel="nofollow noreferrer">https://numba.readthedocs.io/en/stable/user/jit.html</a> but you need to know how to use it. (I don't know, but one of my coworkers does.)<p>There is a nice comparison of languages speed and sizes in <a href="https://benchmarksgame-team.pages.debian.net/benchmarksgame/box-plot-summary-charts.html" rel="nofollow noreferrer">https://benchmarksgame-team.pages.debian.net/benchmarksgame/...</a><p>I like Racket, but editing it without the help of a editor to match the parenthesis is imposible.
I find myself using J [0] for such type of ideation/programming exercises. Klong/K/APL also lend to similar productivity.<p>[0] <a href="https://www.hillelwayne.com/handwriting-j/" rel="nofollow noreferrer">https://www.hillelwayne.com/handwriting-j/</a>
The APLs are tough to beat for high latency input mechanisms.<p>(Fun fact: Peter Landin originally introduced the "offside rule" because it would be suitable for handwritten as well as digital input)