beamr 0.6.4

A Rust runtime with the BEAM's execution model, targeting Gleam
Documentation
1
2
3
4
5
6
-module(spawn_parent).
-export([child_version/0, spawn_child/0, spawn_child_link/0]).

child_version() -> counter:version().
spawn_child() -> spawn(?MODULE, child_version, []).
spawn_child_link() -> spawn_link(?MODULE, child_version, []).