13 lines
292 B
Racket
13 lines
292 B
Racket
#lang racket/base
|
|
|
|
(provide (all-defined-out))
|
|
|
|
(define program-name "rodo")
|
|
(define program-directory ".rodo/")
|
|
(define program-path "~/")
|
|
(define program-file "todo-list")
|
|
(define remove-command "rm")
|
|
(define add-command "add")
|
|
(define list-command "ls")
|
|
(define initialize-command "init")
|