* 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
19 lines
391 B
Racket
19 lines
391 B
Racket
#lang racket/base
|
|
|
|
(provide (all-defined-out))
|
|
|
|
(define program-name "rodo")
|
|
|
|
(define program-directory (build-path (find-system-path 'home-dir) ".config" "rodo"))
|
|
(define program-file (build-path program-directory "list.txt"))
|
|
|
|
(define help-command "help")
|
|
|
|
(define initialize-command "initialize")
|
|
|
|
(define add-command "add")
|
|
|
|
(define list-command "ls")
|
|
|
|
(define remove-command "rm")
|