You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
350 B

# This is a test script meant to be fed to t-script. It is not meant as an
# exhaustive test, but mainly as a demonstration.
#
# $Id: test1.sc 170 2000-09-06 21:43:25Z garland $
#
echo The following sum should be 15
add 1 2 3 4 5
echo
echo The following average should be 3.5
avg 3 8 2 1
echo
echo The following is the vector [1 0 0]
vec3 1 0 0