aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-02-19 05:15:23 +0000
committerMike Buland <eichlan@xagasoft.com>2007-02-19 05:15:23 +0000
commitc208b397b798910df4ad129fb13d562b4450034e (patch)
treedbc04e831163022e09c7a001b887ba3d7f82f7bd /src/tests
parent89eeeff54f0b3ce30be5b046fc3899fdeb5ebb40 (diff)
downloadlibbu++-c208b397b798910df4ad129fb13d562b4450034e.tar.gz
libbu++-c208b397b798910df4ad129fb13d562b4450034e.tar.bz2
libbu++-c208b397b798910df4ad129fb13d562b4450034e.tar.xz
libbu++-c208b397b798910df4ad129fb13d562b4450034e.zip
The formula system works just fine, just no functions yet, but I don't need them
for quite a while.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/formula.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/formula.cpp b/src/tests/formula.cpp
index 599a264..976b039 100644
--- a/src/tests/formula.cpp
+++ b/src/tests/formula.cpp
@@ -6,7 +6,7 @@ int main( int argc, char *argv[] )
6 6
7 Formula f; 7 Formula f;
8 double dOut = f.run( argv[1] ); 8 double dOut = f.run( argv[1] );
9 printf("Final: %f\n", dOut ); 9 printf("%s = %f\n", argv[1], dOut );
10 10
11 return 0; 11 return 0;
12} 12}