top | item 18633965

(no title)

herrosheep | 7 years ago

I do agree that Perl (6) is not a cleanly designed language.

discuss

order

lizmat|7 years ago

Would you care to elaborate on the non-clean parts in your opinion?

herrosheep|7 years ago

Things like this seem like odd design choices:

  my @menu = <hamburger fries milkshake>;
  say @menu.contains('hamburger');            # True 
  say @menu.contains('hot dog');              # False 
  say @menu.contains('milk');                 # True! 
  say @menu.contains('er fr');                # True! 
  say @menu.contains(<es mi>);                # True!