in reply to Re: What does a plus mean before a package name?
in thread What does a plus mean before a package name?

Anonymous brother, can you please point out this difference more clearly?   I am old, and mine eyes are dim.

Replies are listed 'Best First'.
Re^3: What does a plus mean before a package name?
by Anonymous Monk on May 26, 2011 at 12:41 UTC
    Ideas
    Increase font size?
    Increase contrast?
    Disable code wrapping (temporarily)?
    Switch themes (temporarily)?
    Run through perltidy/ppi2html/gvim...pastebin...?
    Try this, with
    # -e " ok +Some::Package::Foo->a_method_call($var), 'test succeeded'; + " (('ok' + 'Some::Package::Foo'->a_method_call($var)), '???'); # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ( ( 'ok' + 'Some::Package::Foo' -> a_method_call ( $var ) ) , '???' ) ; ################################################################## # -MTest::More -e " ok +Some::Package::Foo->a_method_call($var), 'test + succeeded'; " use Test::More; ok('Some::Package::Foo'->a_method_call($var), 'test succeeded'); # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # use Test::More; ok ( 'Some::Package::Foo' -> a_method_call ( $var ) , 'test succeeded' ) ; ##################################################################
    without
    # -e " ok Some::Package::Foo->a_method_call($var), 'test succeeded'; " ('Some::Package::Foo'->ok->a_method_call($var), '???'); # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ( 'Some::Package::Foo' -> ok -> a_method_call ( $var ) , '???' ) ; ################################################################## # -MTest::More -e " ok Some::Package::Foo->a_method_call($var), 'test +succeeded'; " use Test::More; ok('Some::Package::Foo'->a_method_call($var), 'test succeeded'); # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # use Test::More; ok ( 'Some::Package::Foo' -> a_method_call ( $var ) , 'test succeeded' ) ;