sketching out prototype for web-world
This commit is contained in:
parent
30ea1aab1f
commit
225ea42d0c
3
web-world.rkt
Normal file
3
web-world.rkt
Normal file
|
@ -0,0 +1,3 @@
|
|||
#lang s-exp "lang/base.rkt"
|
||||
(require "web-world/main.rkt")
|
||||
(provide (all-from-out "web-world/main.rkt"))
|
8
web-world/examples/hello/hello.rkt
Normal file
8
web-world/examples/hello/hello.rkt
Normal file
|
@ -0,0 +1,8 @@
|
|||
#lang planet dyoo/whalesong
|
||||
(require (planet dyoo/whalesong/web-world)
|
||||
(planet dyoo/whalesong/resource))
|
||||
|
||||
(define-resource index.html "index.html")
|
||||
|
||||
(big-bang "don't care"
|
||||
(initial-view index.html))
|
4
web-world/examples/hello/index.html
Normal file
4
web-world/examples/hello/index.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<html>
|
||||
<head><title>Hello world</title></head>
|
||||
<body><h1>Hello world</h1></body>
|
||||
</html>
|
1
web-world/main.rkt
Normal file
1
web-world/main.rkt
Normal file
|
@ -0,0 +1 @@
|
|||
#lang s-exp "../lang/base.rkt"
|
Loading…
Reference in New Issue
Block a user