#!/bin/sh
set -e

cd "$AUTOPKGTEST_TMP"

cat <<EOF > test1.noct
func main() {
    print("Hello");
}
EOF

noct test1.noct
noct --force-jit test1.noct
echo "Autopkgtest: OK"
