Skip to content

bduggan/mosdef

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
t
 
 
 
 
 
 
 
 

Slang::Mosdef

All the cool kids are using def to declare methods. Now you can, too.

Build Status

use Slang::Mosdef;

class Foo {
    def bar {
        say 'I am cool too';
    }
    method baz {
        say 'This is not as much fun';
    }
}

You can also use lambda for subs!

my $yo = lambda { say 'oy' };
$yo();

Or λ!

my $twice = λ ($x) { $x * 2 };
say $twice(0); # still 0

Compute 5 factorial using a Y combinator:

say λ ( &f ) {
  λ ( \n ) {
    return f(&f)(n);
  }
}(
  λ ( &g ) {
    λ ( \n ) {
        return n==1 ?? 1 !! n * g(&g)(n-1);
    }
})(5)

About

Use def to declare subs in Perl 6.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Other 100.0%