Explore >> Select a destination


You are here

surma.dev
| | rust-embedded.github.io
1.2 parsecs away

Travel
| |
| | vmx.cx
1.2 parsecs away

Travel
| | [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
0.9 parsecs away

Travel
| | [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
11.1 parsecs away

Travel
| 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);...