Skip to content

Instantly share code, notes, and snippets.

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.
@eKristensen
eKristensen / Dockerfile
Created February 3, 2024 18:58
vigil aarch64 podman / docker build
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