aboutsummaryrefslogtreecommitdiff
path: root/src/tests/fstrstd.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-07-03 00:50:59 +0000
committerMike Buland <eichlan@xagasoft.com>2007-07-03 00:50:59 +0000
commitf7f45e9630912cfca6b3a6b60577f02924c3dbc9 (patch)
treebac0b1088b3bcd4407417dbf20a69812c1b8f2e5 /src/tests/fstrstd.cpp
parent395a9f1b8ce44d55dbe4496ce34e1ec6a6e2a3ba (diff)
downloadlibbu++-f7f45e9630912cfca6b3a6b60577f02924c3dbc9.tar.gz
libbu++-f7f45e9630912cfca6b3a6b60577f02924c3dbc9.tar.bz2
libbu++-f7f45e9630912cfca6b3a6b60577f02924c3dbc9.tar.xz
libbu++-f7f45e9630912cfca6b3a6b60577f02924c3dbc9.zip
Ah, that explains much, I did the big reorg -> trunk move and forgot to commit
some things, so here they are, after being manually copied.
Diffstat (limited to '')
-rw-r--r--src/tests/fstrstd.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tests/fstrstd.cpp b/src/tests/fstrstd.cpp
new file mode 100644
index 0000000..8dffcb6
--- /dev/null
+++ b/src/tests/fstrstd.cpp
@@ -0,0 +1,9 @@
1#include <iostream>
2#include "bu/fstring.h"
3
4int main()
5{
6 Bu::FString s("Hey there, dude.\n");
7
8 std::cout << s << 5;
9}