Sha256: 2e4d7d8fb44ead9122922528a2be2ea10938f811894921bc63b352ed8d8ff8cb

Contents?: true

Size: 179 Bytes

Versions: 3

Compression:

Stored size: 179 Bytes

Contents

#! /bin/sh

# Fail on first error
set -e

for program in *.hax ; do
    echo "Compiling example $program ..."
    ../bin/hcc $program
    ../bin/hld -o $program.e $program.u
done

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
haxor-0.3.0 examples/build.sh
haxor-0.2.0 examples/build.sh
haxor-0.1.0 examples/build.sh