Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / test-output / src / tests / snapshots / test_output__tests__echo__erlang-echo_float.snap
386 B 22 lines
1--- 2source: test-output/src/tests/echo.rs 3expression: output 4--- 5--- main.gleam ---------------------- 6// SPDX-License-Identifier: Apache-2.0 7// SPDX-FileCopyrightText: 2024 The Gleam contributors 8 9pub fn main() { 10 echo 1.0 11 echo 2.1 12 echo 11.11 13} 14 15 16--- gleam run output ---------------- 17src/main.gleam:5 181.0 19src/main.gleam:6 202.1 21src/main.gleam:7 2211.11