#!/bin/sh
set -efu

cd "$ADTTMP"
EXAMPLE="/usr/share/doc/python-arrayfire-doc/examples/getting_started/intro.py"
echo "=== python2 ==="
python "$EXAMPLE" 2>&1
echo "=== python3 ==="
python3 "$EXAMPLE" 2>&1
