rodo/src/rodo.rkt
Jesse Laprade 7c7bdf15d4 Rewrote almost everything
* Removed different command naming options to simplify maintenance
* Renamed "init" command to "initialize"
* Simplified condition checking
* Made numbering more human by starting at 1 instead of 0
* Used path procedures instead of haphazardly stringing things together
* Adjusted README according to the new changes
* Moved init.rkt into utils.rkt
* Added new messages
* Edited existing messages
2020-06-12 00:46:44 -04:00

9 lines
143 B
Racket

#lang racket/base
(require "args.rkt")
(define (main vectorof-args)
(process-args vectorof-args))
(main (current-command-line-arguments))