1 2 3 4 5 6 7 8 9 10 11 12
#include "bu/fstring.h" #include <stdio.h> int main() { Bu::FString s; s.format("%d, %f, \'%s\'", 144, 12.5, "bob" ); printf("test: %s\n", s.getStr() ); }