The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#=infix
$a < $b		# $a.infix:«<»( $b );
$a <=> $b	# $a.infix:«<=>»( $b );
@a ¥ @b		# @a.infix:<¥>( @b );

#=circumfix
$a{'foo'}		# $a.circumfix:«{ }»('foo');

#=postcircumfix
$a.{'foo'}		# $a.postcircumfix:«{ }»('foo');