hello world

This commit is contained in:
xenia 2020-08-17 22:48:43 -04:00
commit 42f2eb864f
4 changed files with 18 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.zo
*.dep
compiled/

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# gemini for racket
sharks

7
gemini/info.rkt Normal file
View File

@ -0,0 +1,7 @@
#lang info
(define version "0.0.1")
(define collection "gemini")
(define deps '("base"))
(define test-omit-paths '("info.rkt"))
; (define scribblings '(("gemini.scrbl"))')

5
gemini/main.rkt Normal file
View File

@ -0,0 +1,5 @@
#lang racket/base
(provide helloworld)
(define (helloworld) (displayln "hello world"))