hello world
This commit is contained in:
commit
42f2eb864f
|
@ -0,0 +1,3 @@
|
||||||
|
*.zo
|
||||||
|
*.dep
|
||||||
|
compiled/
|
|
@ -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"))')
|
|
@ -0,0 +1,5 @@
|
||||||
|
#lang racket/base
|
||||||
|
|
||||||
|
(provide helloworld)
|
||||||
|
|
||||||
|
(define (helloworld) (displayln "hello world"))
|
Loading…
Reference in New Issue