#!/bin/bash
SRC=asm.scm
DST=asm.out

if racket ${SRC} | xxd -r -p >${DST}; then
    chmod +x ${DST}
    ./${DST}
    echo "Exit Code: $?"
fi
