https://github.com/kwchang0831/hello-world-elixir
👋 Hello World from Elixir
https://github.com/kwchang0831/hello-world-elixir
elixir hello-world helloworld
Last synced: about 1 year ago
JSON representation
👋 Hello World from Elixir
- Host: GitHub
- URL: https://github.com/kwchang0831/hello-world-elixir
- Owner: kwchang0831
- License: mit
- Created: 2021-08-09T17:03:11.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-02-15T06:02:42.000Z (over 4 years ago)
- Last Synced: 2025-02-13T07:15:23.650Z (over 1 year ago)
- Topics: elixir, hello-world, helloworld
- Language: Elixir
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello World from Elixir
[](https://github.com/kwchang0831/hello-world-elixir/actions/workflows/ci.yml)
[](https://github.com/kwchang0831/hello-world-elixir/blob/main/LICENSE)
[](https://coveralls.io/github/kwchang0831/hello-world-elixir?branch=main)
Program written in Elixir that prints out "Hello World from Elixir".
This is my first project in Elixir as I started learning it in 2022.
## Run
```shell
mix do deps.get, deps.compile
mix run
```
## Expected Output
```shell
> mix run
Hello World from Elixir.
>
```
## Test
```shell
mix format --check-formatted
mix credo --strict
mix test
mix dialyzer
```