aboutsummaryrefslogtreecommitdiff
path: root/src/tests/stdstream.cpp
blob: d67f9b88228b82d60c4792d30217af0eae5e686e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "bu/sio.h"

int main()
{
	Bu::sio << "Hello there" << Bu::sio.nl;

	Bu::sio << "sizeof(Fmt) = " << sizeof(Bu::Fmt) << Bu::sio.nl;

	Bu::sio << -123 << ", " << 0 << ", " << 123 << Bu::sio.nl;

	Bu::sio << "+----------+" << Bu::sio.nl;
	Bu::sio << "|" << Bu::Fmt( 10, 10, Bu::Fmt::Center ) << "Test" << "|" << Bu::sio.nl;
	Bu::sio << "+----------+" << Bu::sio.nl;
	Bu::sio << "|" << Bu::Fmt( 10, 10, Bu::Fmt::Left ) << 123 << "|" << Bu::sio.nl;
	Bu::sio << "|" << Bu::Fmt( 10, 10, Bu::Fmt::Center ) << 123 << "|" << Bu::sio.nl;
	Bu::sio << "|" << Bu::Fmt( 10, 10, Bu::Fmt::Right ) << 123 << "|" << Bu::sio.nl;
	Bu::sio << "+----------+" << Bu::sio.nl;

	return 0;
}