1# Project
2
3A test Gleam project.
4
5It covers these features:
6
7- Downloading packages
8 - Specified in config.dependencies
9- Importing packages
10 - Specified in config.dependencies
11- Compilation of Gleam code
12 - in src
13 - in test
14- Importing Gleam src code into test
15
16These features are not tested yet
17
18- Downloading packages
19 - Specified in config.dev-dependencies
20- Importing packages
21 - Specified in config.dev-dependencies
22- Compilation of locally defined JavaScript modules
23 - in src
24 - in test
25- Importing Gleam src code into test
26
27## Quick start
28
29```sh
30gleam run
31gleam test
32```