#!/bin/bash

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