Ask HN: What's the fastest programming language with a large standard library?
1–10 of 36 posts
Re: Ask HN: What's the fastest programming language with a large standard library?
#2Re: Ask HN: What's the fastest programming language with a large standard library?
#3Re: Ask HN: What's the fastest programming language with a large standard library?
#4Re: Ask HN: What's the fastest programming language with a large standard library?
#5I don't remember the exact quote, but it goes something like "most [languages?] are a buggy implementation of half of Common Lisp"
Re: Ask HN: What's the fastest programming language with a large standard library?
#6Re: Ask HN: What's the fastest programming language with a large standard library?
#7The compilation process itself is one of the fastest around. Libraries are "units" and separately compiled. You can have GUI executables that weigh in at < 500k if you turn off debugging.
Re: Ask HN: What's the fastest programming language with a large standard library?
#8Java
Today it is a terrible monster that you use because of the lack of alternatives, not because it is fast or comfortable to use.
Re: Ask HN: What's the fastest programming language with a large standard library?
#9Re: Ask HN: What's the fastest programming language with a large standard library?
#10I always thought of Turbo Pascal/Delphi/Free Pascal as a fairly complete system. Static typing gets in the way at times, so you won't see TensorFlow in Pascal, but the TUI/GUI that came with it made it suitable for building almost anything, with no added pieces. The compilation process itself is one of the fastest around. Libraries are "units" and separately compiled. You can have GUI executables that weigh in at < 5…