Python and Perl 6 Similarities between Python and Perl 6 #27

Classes

Classes declared with the 'class' keyword:

# Python:
class Dog:

def __init__(self):
  self._name = 'Sally'

def bark(self):
  print self._name
 
 
# Perl 6:
class Dog;

has $.name = 'Sally';

method bark() { say self.name }
Copyright © 2010
http://www.pmichaud.com/2010/pres/