Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

changelog

+18
+18
CHANGELOG.md
··· 4 4 5 5 ### Compiler 6 6 7 + - It is now possible to add a custom message to be printed by `echo`, making it 8 + easier to include additional context to be printed at runtime: 9 + 10 + ```gleam 11 + pub fn main() { 12 + echo 11 as "lucky number" 13 + } 14 + ``` 15 + 16 + Will output to stderr: 17 + 18 + ```txt 19 + /src/module.gleam:2 lucky number 20 + 11 21 + ``` 22 + 23 + ([Giacomo Cavalieri](https://github.com/giacomocavalieri)) 24 + 7 25 - Generated JavaScript functions, constants, and custom type constructors now 8 26 include any doc comment as a JSDoc comment, making it easier to use the 9 27 generated code and browse its documentation from JavaScript.