Brainsick® code compiler

Getting started

These instructions should work on most GNU/Linux distributions, such as Arch, Debian, Fedora, and Ubuntu. An x86_64 processor is required.

Download and install

curl -L https://ftp.brainsick.cc/pub/brainsick/bscc/v0.2.1/bscc-x86_64.AppImage > bscc chmod +x bscc sudo mv bscc /usr/local/bin/

Write a Hello World application

cat <<EOF > hello.bas Sub Main() Call MsgBox("Hello, world!") End Sub EOF

Compile your application

bscc hello.bas -o hello.exe

Run your application

First, install Wine from your operating system package manager. Then run the following:

wine ./hello.exe