SIGN IN SIGN UP
vlang / v UNCLAIMED

Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io

0 0 103 V
FROM mstorsjo/llvm-mingw
LABEL maintainer="Delyan Angelov <delian66@gmail.com>"
COPY . .
RUN make
2020-02-09 17:08:04 +08:00
RUN ./v -os windows -o v.c cmd/v
RUN x86_64-w64-mingw32-gcc v.c -std=c99 -w -municode -o v.exe -lws2_32
RUN file v.exe
CMD [ "bash" ]