nus/cs2106/labs/lab2/part1/diff.sh

6 lines
55 B
Bash
Executable File

#!/bin/bash
x=15
y=20
z=$(($x-$y))
echo "$x - $y = $z"