#include "bu/atom.h" #include #include int main() { Bu::Atom aInt; Bu::Atom aStr; aStr.set("Hey there, dude"); aInt.set( 55 ); int me = aInt; aInt = 12; printf("%d, %d\n", aInt.get(), me ); printf("%s\n", aStr.get() ); }