✓
Passing This code compiles and runs correctly.
Code
// Test: Basic string creation and read
~import std/string
~import std/io
~std/string:from-page(text: "hello")
| ok s |> std/string:read(s)
| slice text |> std/io:print.ln("{{ text:s }}") |> std/string:free(s)
| err _ |> _
Actual
hello
Expected output
hello
Test Configuration
MUST_RUN