|
You are here |
surma.dev | ||
| | | | |
rust-embedded.github.io
|
|
| | | | | ||
| | | | |
vmx.cx
|
|
| | | | | [AI summary] The author discusses creating a WASM binary with multi-value returns using Rust, overcoming challenges with tooling and FFI safety issues. | |
| | | | |
paulbutler.org
|
|
| | | | | [AI summary] The post discusses the current state and challenges of embedding WebAssembly outside of browsers, focusing on runtime choices, memory management, and interface design for applications like real-time multiplayer games. | |
| | | | |
connorberry.com
|
|
| | | Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);... | ||