예제 #1
0
int
main()
{
	visit_simple();

	print_visitor2()(
		42
	);
}
예제 #2
0
int
main()
{
	visit_simple();

	print_visitor2(
		42
	);

	match_test(
		string_or_int(
			std::string(
				"test"
			)
		)
	);
}
예제 #3
0
int
main()
{
	visit_simple();
}