Fork of daniellemaywood.uk/gleam — Wasm codegen work
gleam
/
test-output
/
src
/
tests
/
snapshots
/
test_output__tests__echo__javascript-echo_bitarray.snap
426 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 <<>>
11 echo <<1, 2, 3>>
12 echo <<1, 2, 3:2>>
13}
14
15
16--- gleam run output ----------------
17[90msrc/main.gleam:5[39m
18<<>>
19[90msrc/main.gleam:6[39m
20<<1, 2, 3>>
21[90msrc/main.gleam:7[39m
22<<1, 2, 3:size(2)>>