Files
nus/cs2106/labs/lab2/part1/diff.sh
2024-01-22 14:27:44 +08:00

6 lines
55 B
Bash
Executable File

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