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 / external_only_javascript / src / external_only_javascript.gleam
362 B 8 lines
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2024 The Gleam contributors 3 4// This function is only implemented for JavaScript, so if we try and call it 5// from Erlang, or build this package for Erlang, then the compiler will 6// (should) emit an error. 7@external(javascript, "./external_only_javascript_ffi.mjs", "main") 8pub fn main() -> Nil