#!/bin/bash

if [ "$*" == "run /tmp/hello.cr" ]; then
    echo "Hello world!"
    exit 0
fi
exit 1
