lucas-numbers/lucas-07.p6

Run Settings
LanguageRaku
Language Version
Run Command
sub lucas(UInt $nth) returns UInt { given $nth { when 0 { 2 } when 1 { 1 } default { lucas($nth - 1) + lucas($nth - 2) } } } say lucas(5);
Editor Settings
Theme
Key bindings
Full width
Lines