Просмотр исходного кода

remov typing from config file

This was done because this is the only file that was using typed Racket.
The other portions of the program do not typed (but see #5), so the
config file typing was slowing the program execution without providing
significant improvements in development or ensuring program correctness.
George C. Privon 2 лет назад
Родитель
Сommit
bbd38b2258
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      config.rkt.example

+ 1 - 3
config.rkt.example

@@ -1,10 +1,8 @@
-#lang typed/racket/base
+#lang racket/base
 
 
 (provide dbloc
 (provide dbloc
          PIname)
          PIname)
 
 
-(: dbloc String)
 (define dbloc "/path/to/database")
 (define dbloc "/path/to/database")
 
 
-(: PIname String)
 (define PIname "Lastname")
 (define PIname "Lastname")