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

Configure Feed

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

gleam / compiler-cli / src / integration / snapshots / gleam__integration__echo__erlang-echo_float.snap
298 B 19 lines
1--- 2source: compiler-cli/src/integration/echo.rs 3expression: output 4--- 5--- main.gleam ---------------------- 6pub fn main() { 7 echo 1.0 8 echo 2.1 9 echo 11.11 10} 11 12 13--- gleam run output ---------------- 14src/main.gleam:2 151.0 16src/main.gleam:3 172.1 18src/main.gleam:4 1911.11