#!/bin/bash

if [ "$*" == "/tmp/hello.js" ]; then
	echo "Hello World"
	exit 0
fi
exit 1
