fwd_println(auto s);

callee()
{
	fwd_println("Hello from callback!");
}

caller(*() callback)
{
	callback();
}

main()
{
	caller(callee);
}