This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks for the thorough reply. | |
**Short version**: Your reply helped me get a better understanding than before, but I still have some unanswered questions. I think that I understand why a value list makes sense now. What is the purpose of an expression list? | |
**Long version**: | |
**Intro** | |
My initial post would have been very long if I tried to explain everything that I have tried to understand Core Erlang, which is why I kept it brief. | |
Furthermore, I wanted to focus on Core Erlang, rather than what I did with it. But I realize now that more context is needed. Sadly I am not sure how to keep it brief while explaining what I know and the source for my confusion with part of the Core Erlang syntax, so the long version is quite long. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM docker.io/rustlang/rust:nightly-alpine AS build | |
RUN apk add --no-cache musl-dev perl make | |
RUN rustup --version | |
RUN rustup target add aarch64-unknown-linux-musl | |
RUN rustc --version && \ | |
rustup --version && \ | |
cargo --version |