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 / cases / echo_singleton / src / main_ffi.mjs
203 B 10 lines
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2025 The Gleam contributors 3 4import { Thing } from "./thing.mjs"; 5 6const it = new Thing(); 7 8export function singleton() { 9 return it; 10}