articles/programming_language.md: mention awk

This commit is contained in:
tocariimaa 2025-02-11 14:22:29 -03:00
parent 18bf704291
commit 1165beca48

View file

@ -14,8 +14,9 @@ In some ways, assembly can be considered a (low-level) programming language, sin
- [Forth](forth.md): yes, niche, but it is a nice exercise on minimalism.
- [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.
- [AWK](awk.md): yes, the standard [Unix](unix.md) [DSL](dsl.md) for text processing.
- ([POSIX](posix.md)) [Shell Script](shell_script.md): yes, has its quirks.
- [Perl](perl.md): 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 and AWK, since it is commonly installed in most
modern unixes.
- [Go](golang.md): acceptable but beware of the big executable sizes.
- [PHP](php.md) (no OOP): acceptable, if you need interactive web pages but stay away from [frameworks](frameworks.md).