#!/bin/bash

./setc.native < $1  > hi.ll && llc hi.ll > hi.s && cc -o hi.exe hi.s stdlib.o && ./hi.exe

rm hi.ll hi.s hi.exe

