Skip to content

Instantly share code, notes, and snippets.

View mscha's full-sized avatar

Michael Schaap mscha

View GitHub Profile
@mscha
mscha / snakes-and-ladders.raku
Last active November 1, 2023 17:00
Snakes and ladders simulation based on https://www.youtube.com/watch?v=nlm07asSU0c
#!/usr/bin/env raku
use v6.d;
class SnakesAndLadders
{
enum OvershootRules <StepBack StandStill>;
#constant $START-POS = 1;
#constant $WIN-POS = 64;
#constant %SNAKES = 23=>4, 30=>10, 42=>9, 49=>15, 54=>20, 61=>46;