diff options
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/atom.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tests/atom.cpp b/src/tests/atom.cpp new file mode 100644 index 0000000..cf076b1 --- /dev/null +++ b/src/tests/atom.cpp | |||
@@ -0,0 +1,17 @@ | |||
1 | #include "bu/atom.h" | ||
2 | #include <stdio.h> | ||
3 | #include <stdlib.h> | ||
4 | |||
5 | int main() | ||
6 | { | ||
7 | Bu::Atom<int> aInt; | ||
8 | Bu::Atom<char *> aStr; | ||
9 | |||
10 | aStr.set("Hey there, dude"); | ||
11 | aInt.set( 55 ); | ||
12 | int me = aInt; | ||
13 | aInt = 12; | ||
14 | printf("%d, %d\n", aInt.get(), me ); | ||
15 | printf("%s\n", aStr.get() ); | ||
16 | } | ||
17 | |||