Explore >> Select a destination


You are here

jamie-wong.com
| | blog.darklang.com
2.0 parsecs away

Travel
| | And their influence on Dark After two decades of coding professionally in a dozen languages, I've come to a conclusion about static and dynamic types: * Static types help you ensure that your changes work, especially for changes that span large parts of the program. This leads to long-term productivity
| | yieldcode.blog
1.5 parsecs away

Travel
| | Take a good look at the following function and try to understand what it's doing. function do_magic(a, b) { return a + b; }
| | nurkiewicz.com
1.9 parsecs away

Travel
| | When choosing or learning a new programming language, type system should be your first question. How strict is that language when types don't really match? Will there be a conservative, slow and annoying compiler? Or maybe a fast feedback loop, often resulting in crashes at runtime? And also, is the language runtime trusting you know what you are doing, even if you don't? Or maybe it's babysitting you, making it hard to write fast, low-level code? Believe it or not, I just described static, dynamic, weak and strong typing.
| | www.bitsnbites.eu
18.4 parsecs away

Travel
| [AI summary] This article provides a quick introduction to developing software for the open-source MRISC32 32-bit RISC architecture using a GCC-based toolchain and a simulator, including examples from compiling C code and running DOOM.