diff options
author | martin@ashbysoft.com <martin@ashbysoft.com> | 2022-06-11 20:02:48 +0000 |
---|---|---|
committer | martin@ashbysoft.com <martin@ashbysoft.com> | 2022-06-11 20:02:48 +0000 |
commit | c813f7bd522baf1057ba9bee874669ea5b945a66 (patch) | |
tree | dfb3c1dc231ad779cd693d3890bd154839ea5121 /run | |
parent | 9688990db4ce2078a0027315ca80b5717fc5cacd (diff) | |
download | learn-c-c813f7bd522baf1057ba9bee874669ea5b945a66.tar.gz learn-c-c813f7bd522baf1057ba9bee874669ea5b945a66.tar.bz2 learn-c-c813f7bd522baf1057ba9bee874669ea5b945a66.tar.xz learn-c-c813f7bd522baf1057ba9bee874669ea5b945a66.zip |
more intro exercises
Diffstat (limited to 'run')
-rwxr-xr-x | run | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -e +cc -o exe $@ +./exe +result=$? +rm exe +exit $result
\ No newline at end of file |