diff options
Diffstat (limited to '')
-rw-r--r-- | src/tests/fstrformat.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/tests/fstrformat.cpp b/src/tests/fstrformat.cpp deleted file mode 100644 index a911a8f..0000000 --- a/src/tests/fstrformat.cpp +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2011 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/string.h" | ||
9 | #include <stdio.h> | ||
10 | |||
11 | int main() | ||
12 | { | ||
13 | Bu::String s; | ||
14 | |||
15 | s.format("%d, %f, \'%s\'", 144, 12.5, "bob" ); | ||
16 | |||
17 | printf("test: %s\n", s.getStr() ); | ||
18 | } | ||
19 | |||