Help for this page

Select Code to Download


  1. or download this
    print "Hello World";
    
  2. or download this
    stevan% perl -MO=Concise test.pl
    6  <@> leave[1 ref] vKP/REFC ->(end)
    ...
    5     <@> print vK ->6
    3        <0> pushmark s ->4
    4        <$> const[PV "Hello World"] s ->5
    
  3. or download this
    if (shift) {
            print "Hello World";
    ...
    else {
            print "Goodbye World";
    }
    
  4. or download this
    a  <@> leave[1 ref] vKP/REFC ->(end)
    1     <0> enter ->2
    ...
    f              <@> print vK ->g
    d                 <0> pushmark s ->e
    e                 <$> const[PV "Goodbye World"] s ->f
    
  5. or download this
    sub start {
            print test();
    ...
    }
    
    print start();
    
  6. or download this
    perl -MO=Concise,-main,start,test test.pl
    main::start:
    ...
    k              <0> pushmark s ->l
    -              <1> ex-rv2cv sK/1 ->-
    l                 <#> gv[*start] s ->m