aboutsummaryrefslogtreecommitdiff
path: root/src/tests/fstrformat.cpp
blob: dbf6133aeee2891b65f6749fab7e95fb4632e376 (plain)
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() );
}