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 / project_javascript / src / project.gleam
277 B 10 lines
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2021 The Gleam contributors 3 4pub fn main() { 5 println("Hello, from project_javascript!") 6} 7 8@external(erlang, "erlang", "display") 9@external(javascript, "./project_ffi.mjs", "log") 10fn println(a: String) -> Nil