articles/programming_language.md: add article links
This commit is contained in:
parent
0866564b4f
commit
fefe7e1ef3
1 changed files with 10 additions and 10 deletions
|
@ -11,15 +11,15 @@ In some ways, assembly can be considered a (low-level) programming language, sin
|
||||||
- [C](c.md): yes, the first and natural choice for writing programs. The Unix language.
|
- [C](c.md): yes, the first and natural choice for writing programs. The Unix language.
|
||||||
- [Lua](lua.md): yes, good for embedding and quick scripts.
|
- [Lua](lua.md): yes, good for embedding and quick scripts.
|
||||||
- [Lisp](lisp.md): yes, flexible and relatively fast, prefer Scheme over the more bloated Common Lisp (still better than C++ however).
|
- [Lisp](lisp.md): yes, flexible and relatively fast, prefer Scheme over the more bloated Common Lisp (still better than C++ however).
|
||||||
- Forth: yes, niche, but it is a nice exercise on minimalism.
|
- [Forth](forth.md): yes, niche, but it is a nice exercise on minimalism.
|
||||||
- Pascal (no OOP): yes, old school and quite verbose, but small and fast compared to, say C++ or Rust; comparable to C in terms
|
- [Pascal](pascal.md) (no OOP): yes, old school and quite verbose, but small and fast compared to, say C++ or Rust; comparable to C in terms
|
||||||
of features.
|
of features.
|
||||||
- (POSIX) [Shell Script](shell_script.md): yes, has its quirks.
|
- ([POSIX](posix.md)) [Shell Script](shell_script.md): yes, has its quirks.
|
||||||
- Perl: acceptable, could be used as a replacement for more complex shell scripts, since it is commonly installed in most
|
- [Perl](perl.md): acceptable, could be used as a replacement for more complex shell scripts, since it is commonly installed in most
|
||||||
modern unixes.
|
modern unixes.
|
||||||
- Go: acceptable but beware of the big executable sizes.
|
- [Go](golang.md): acceptable but beware of the big executable sizes.
|
||||||
- PHP (no OOP): acceptable, if you need interactive web pages but stay away from [frameworks](frameworks.md).
|
- [PHP](php.md) (no OOP): acceptable, if you need interactive web pages but stay away from [frameworks](frameworks.md).
|
||||||
- Python: Slow and bloated, avoid
|
- [Python](python.md): Slow and bloated, avoid
|
||||||
- C++: No.
|
- [C++](cpp.md): No.
|
||||||
- JavaScript: No.
|
- [JavaScript](javascript.md): No.
|
||||||
- Rust: NO
|
- [Rust](rust.md): NO
|
||||||
|
|
Loading…
Add table
Reference in a new issue