This commit is contained in:
Miloslav Ciz 2022-11-12 15:49:22 +01:00
parent 06e404c447
commit 58d560ffd4
12 changed files with 65 additions and 8 deletions

View file

@ -34,6 +34,7 @@ Besides the typical big programs that even normies admit are bloated there exist
- [Unicode](unicode.md) (big specification requiring special libraries and big fonts, [ASCII](ascii.md) is better)
- anything that's not strictly needed such as [antialiasing](antialiasing.md) or colors in text rendering
- [linking](linking.md), build systems/scripts, directories and multiple source code files (single file, [header only](header_only.md) libraries and [single compilation unit](single_compilation_unit.md) programs are better)
- [infix notation](infix_notation.md) ([postfix notation](postfix_notation.md) is better)
- any [GUI](gui.md)
- [operating system](os.md) ([bare metal](bare_metal.md) is better)
- [multithreading](multithreading.md), [parallelism](parallelism.md)