Fork of daniellemaywood.uk/gleam — Wasm codegen work
gleam
/
test-package-compiler
/
src
/
snapshots
/
test_package_compiler__generated_tests__hello_joe.snap
777 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_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
14-define(FILEPATH, "src/hello_joe.gleam").
15-export([main/0]).
16
17-file("src/hello_joe.gleam", 4).
18-spec main() -> binary().
19main() ->
20 <<"Hello, Joe!"/utf8>>.
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]}.