Minor changes

This commit is contained in:
Scott C. MacCallum 2023-01-13 08:32:58 -05:00
parent 0a761fa2cb
commit e30ff6770e
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
#!/usr/bin/sh
echo -n "Name of C file to compile "
echo -n "Name of C file to compile: "
read c_file
echo -n "Name of resulting binary file "
echo -n "Name of resulting binary file: "
read bin_file
cc -o $bin_file $c_file