diff options
author | Gavin Howard <yzena.tech@gmail.com> | 2018-08-08 00:15:50 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-08-08 19:56:35 -0500 |
commit | 151e3f782333acbe349fdaac3ec843e42e95be3f (patch) | |
tree | 25e49c3292fafde0613fbcf601f8ab03da082e62 /tests/files/bc/arctan.bc | |
parent | 49d02c41fe60684e1f43cab38e4c1d80a607a921 (diff) | |
download | toybox-151e3f782333acbe349fdaac3ec843e42e95be3f.tar.gz |
Add bc (and its tests) to pending
Diffstat (limited to 'tests/files/bc/arctan.bc')
-rwxr-xr-x | tests/files/bc/arctan.bc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/files/bc/arctan.bc b/tests/files/bc/arctan.bc new file mode 100755 index 00000000..11a76953 --- /dev/null +++ b/tests/files/bc/arctan.bc @@ -0,0 +1,12 @@ +#! /usr/bin/bc -q + +i = 0 +for (i = 1; i <= 100; ++i) { + print "scale = ", i, "\n" + print "a(.267)\n" + print "a(1)\n" +} + +"halt" + +halt |