#!/bin/sh set -e cd "$(dirname "$(realpath "$0")")" echo " let value = 4 * 3 + 2 * 1; let expects = (4 * 3) + (2 * 1); print(value, expects) " | cargo run