Selaa lähdekoodia

Revert "add typing". this doesn't work for the create_database.rkt file

This reverts commit 85eddc7fd22e602a2a8cc7b9a8491be78dad7cf1.
George C. Privon 2 vuotta sitten
vanhempi
commit
725188c96c
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      create_database.rkt

+ 1 - 2
create_database.rkt

@@ -1,4 +1,4 @@
-#lang typed/racket/base
+#lang racket/base
 
 ;; This program creates a sqlite3 database and then creates an empty table
 ;; for information on proposals.
@@ -7,7 +7,6 @@
          "config.rkt") ; load configuration file
 
 ; create the database and create the table
-(: createdb (-> String))
 (define (createdb dbloc)
   (write-string (string-append "Creating database " dbloc "\n"))
   (define conn (sqlite3-connect #:database dbloc