tcondfail - numtools - perform numerical operations on vectors and matrices in … | |
git clone git://src.adamsgaard.dk/numtools | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
tcondfail (72B) | |
--- | |
1 #!/usr/bin/awk -f | |
2 BEGIN { | |
3 if (ARGV[1] < 1.5) | |
4 exit 0 | |
5 else | |
6 exit 1 | |
7 } |