diff options
Diffstat (limited to 'fornax.raku')
-rw-r--r-- | fornax.raku | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/fornax.raku b/fornax.raku deleted file mode 100644 index 7cac53e..0000000 --- a/fornax.raku +++ /dev/null @@ -1,14 +0,0 @@ -use Cairo; - -subset Directory of Str where *.IO.d; - -#| Collection of tools to visualize Path Finding Algorithms -unit sub MAIN( - Str $script, #= script to run (e.g. java/DFS) - Directory :$algorithms = 'algorithms/', #= algorithms directory -); - -my Str $interpreter = $script.split("/").first; -my IO() $program-path = $algorithms ~ $script ~ '.' ~ $interpreter; - -die "Program path invalid" unless $program-path.IO.f; |