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

Configure Feed

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

1<!-- 2 SPDX-License-Identifier: Apache-2.0 3 SPDX-FileCopyrightText: 2024 The Gleam contributors 4--> 5 6# test_community_packages 7 8[![Package Version](https://img.shields.io/hexpm/v/test_community_packages)](https://hex.pm/packages/test_community_packages) 9[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://test-community-packages.hexdocs.pm/) 10 11```sh 12gleam add test_community_packages 13``` 14```gleam 15import test_community_packages 16 17pub fn main() { 18 // TODO: An example of the project in use 19} 20``` 21 22Further documentation can be found at <https://test-community-packages.hexdocs.pm>. 23 24## Development 25 26```sh 27gleam run # Run the project 28gleam test # Run the tests 29gleam shell # Run an Erlang shell 30```