Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Mini HowTo: How to port Perl 5 modules to Perl 6

by iblech (Friar)
on Mar 25, 2005 at 20:07 UTC ( [id://442402]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # This Perl 5 exporting code...
    require Exporter;
    ...
    
    # ...becomes this in Perl 6:
    sub foo(...) is export {...}
    
  2. or download this
    # Perl 5
    sub get_foo {
    ...
    $obj.foo = "...";
    # Notice: Standard assignment syntax!
    # Assignments should look line assingments, not like method calls
    
  3. or download this
    has $.foo is rw;
    
  4. or download this
    subtype OddInt of Int where { $^n % 2 == 1 }
    has OddInt $.foo is rw;
    # And then:
    $obj.foo = 12; # will die (at compile-time!)
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://442402]
Approved by dragonchild
Front-paged by dragonchild
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-18 09:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found