This commit is contained in:
Miloslav Ciz 2024-04-13 22:42:40 +02:00
parent 65c0266705
commit 7507412954
19 changed files with 1906 additions and 1828 deletions

View file

@ -8,6 +8,7 @@ Go (also golang) is a compiled [programming language](programming_language.md) a
- It has [bloat](bloat.md) such as [garbage collection](garbage_collection.md), built-in [complex number](complex_number.md) type, [concurrency](concurrency.md) and something akin a [package manager](package_manager.md) (*go get/install*).
- It forces a programming style in which an opening function bracket (`{`) can't be on its own line. [LMAO](lmao.md)
- Huge standard library with shit like crypto, image and html.
- It is also slow (at least the tested implementations of course), on benchmarks it performs about a class lower than C/C++.
- ...
Anyway, it at least tries to stay *somewhat* simple in some areas and as such is probably better than other modern languages like [Rust](rust.md). It purposefully omits features such as [generics](generics.md) or static type conversions, which is good.