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

Configure Feed

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

245 B 13 lines
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2025 The Gleam contributors 3 4pub fn main() { 5 let message = "message" 6 7 echo 1 as "message1" 8 9 1 10 |> echo as { message <> "2" } 11 |> fn(n) { n + 1 } 12 |> echo as "message3" 13}