mech 0.2.59

Mech is a reactive programming language for building robots, games, and animations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust:latest

WORKDIR /mech
COPY . .

RUN pwd
RUN rustup override set nightly
RUN rustup default nightly-2025-01-15
RUN cargo build --bin mech --release

ENV PATH="/mech/target/release:${PATH}"