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-package-compiler / src / snapshots / test_package_compiler__generated_tests__hello_joe.snap
744 B 30 lines
1--- 2source: test-package-compiler/src/generated_tests.rs 3expression: "./cases/hello_joe" 4--- 5//// /out/lib/the_package/_gleam_artefacts/hello_joe.cache 6<.cache binary> 7 8//// /out/lib/the_package/_gleam_artefacts/hello_joe.cache_meta 9<77 byte binary> 10 11//// /out/lib/the_package/_gleam_artefacts/hello_joe.erl 12-module(hello_joe). 13-compile([no_auto_import, nowarn_ignored, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). 14-export([main/0]). 15 16-file("src/hello_joe.gleam", 4). 17-spec main() -> binary(). 18main() -> 19 ~"Hello, Joe!". 20 21 22 23//// /out/lib/the_package/ebin/hello_joe.app 24{application, hello_joe, [ 25 {vsn, "0.1.0"}, 26 {applications, []}, 27 {description, ""}, 28 {modules, [hello_joe]}, 29 {registered, []} 30]}.