hello world

This commit is contained in:
Milo Turner 2020-04-10 16:31:41 -04:00
commit 5fd0b3c679
3 changed files with 13 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
**/compiled/
.setup

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
all: .setup
raco make webcrawler
.setup:
@touch $@

5
webcrawler Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env racket
#lang racket/base
(module+ main
(displayln "Hello world."))