#!/bin/bash

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