#!/bin/sh
set -e

jimsh <<EOF
puts "hello"
set x [expr {1 + 1}]
if {\$x != 2} {
    exit 1
}
EOF
