diff --git a/cs019/cs019.rkt b/cs019/cs019.rkt index 5b60337..070a270 100644 --- a/cs019/cs019.rkt +++ b/cs019/cs019.rkt @@ -32,6 +32,7 @@ + (require (prefix-in whalesong: "../lang/whalesong.rkt")) (provide (except-out (filtered-out (lambda (name) @@ -70,10 +71,17 @@ (require "../web-world.rkt") (provide (all-from-out "../web-world.rkt")) +(define View$ (Sig: view?)) +(provide View$) + + (require "../resource.rkt") (provide (all-from-out "../resource.rkt")) +(define Resource$ (Sig: resource?)) +(provide Resource$) + diff --git a/examples/cs019/hello.rkt b/examples/cs019/hello.rkt new file mode 100644 index 0000000..223cd5d --- /dev/null +++ b/examples/cs019/hello.rkt @@ -0,0 +1,2 @@ +#lang planet dyoo/whalesong/cs019 +"hello world" \ No newline at end of file diff --git a/examples/cs019/tick-tock/index.html b/examples/cs019/tick-tock/index.html new file mode 100644 index 0000000..e0f3597 --- /dev/null +++ b/examples/cs019/tick-tock/index.html @@ -0,0 +1,7 @@ + + +
The current counter is: fill-me-in
+ + diff --git a/examples/cs019/tick-tock/tick-tock.rkt b/examples/cs019/tick-tock/tick-tock.rkt new file mode 100644 index 0000000..63aa7d6 --- /dev/null +++ b/examples/cs019/tick-tock/tick-tock.rkt @@ -0,0 +1,21 @@ +#lang planet dyoo/whalesong/cs019 + +(define-resource index.html) + + +(define: (draw [world : Number$] [dom : View$]) -> View$ + (update-view-text (view-focus dom "counter") world)) + + +(define: (tick [world : Number$] [dom : View$]) -> Number$ + (add1 world)) + + +(define: (stop? [world : Number$] [dom : View$]) -> Boolean$ + (> world 10)) + +(big-bang 0 + (initial-view index.html) + (to-draw draw) + (on-tick tick 1) + (stop-when stop?)) diff --git a/scribblings/cs019.scrbl b/scribblings/cs019.scrbl index 3ad1c10..e960121 100644 --- a/scribblings/cs019.scrbl +++ b/scribblings/cs019.scrbl @@ -8,8 +8,8 @@ racket/port (only-in racket/contract any/c) racket/runtime-path - "scribble-helpers.rkt" - "../js-assembler/get-js-vm-implemented-primitives.rkt") + "scribble-helpers.rkt") + @(require (for-label (this-package-in resource)) (for-label (this-package-in web-world))) @@ -21,71 +21,34 @@ @author+email["Danny Yoo" "dyoo@hashcollision.org"] + @section{Installation} -Racket 5.1.2 or greater is a prerequisite for Whalesong. Brown CS +Racket 5.1.3 or greater is a prerequisite for Whalesong. Brown CS maintains its own installation of Racket 5.1.3 in -@filepath{/local/projects/racket/releases/5.1.3}. -To access it, you can add the following to your @filepath{.environment}: +@filepath{/local/projects/racket/releases/5.1.3}. This should already be in +your @litchar{PATH}. + + +If it isn't, you can add the following to your @filepath{.environment}: @filebox[".environment"]{ @verbatim|{ pathprependifdir PATH "/local/projects/racket/releases/5.1.3/bin" }|} -Hopefully, this should already be configured to be the default for the @tt{cs19} group +But hopefully, this should already be configured to be the default for the @tt{cs19} group by the time you read this. -We'll install a local development copy of Whalesong in a @filepath{whalesong} subdirectory. -On the very first time we install Whalesong: -@verbatim|{ - $ git clone git://github.com/dyoo/whalesong.git - $ cd whalesong - $ make +Run the following to create the @filepath{whalesong} launcher program in +your current directory. +@codeblock|{ +#lang racket/base +(require (planet dyoo/whalesong:1:4/make-launcher)) }| -The @filepath{make} step make take a minute or two, and creates a command-line program called -@filepath{whalesong} that we'll use to build Whalesong programs. +This will create a @filepath{whalesong} launcher in the current directory. -Whenever we need to update whalesong, we should do the following -@verbatim|{ - $ git pull - $ make -}| - - -@subsection{Warning on Firefox} - -Firefox unfortunately has a -@link["https://bugzilla.mozilla.org/show_bug.cgi?id=676343"]{JavaScript -bug} that prevents it from reliably evaluating Whalesong programs. As -of this writing, I have not been able to find a workaround. You -should probably use Google Chrome instead when testing your programs; -Google Chrome should be in @filepath{/contrib/bin/google-chrome}. - - -@section{Usage} -The @filepath{whalesong} launcher in the subdirectory will compile -programs to @filepath{.html} and @filepath{.js} files. - - -Example usage: using @litchar{whalesong build} to compile a whalesong program. -@verbatim|{ -fermi ~/whalesong $ cd examples - -fermi ~/whalesong/examples $ cat hello.rkt -#lang planet dyoo/whalesong - -(display "hello world") -(newline) - -fermi ~/whalesong/examples $ ../whalesong build hello.rkt - -fermi ~/whalesong/examples $ google-chrome hello.html -Created new window in existing browser session. - -fermi ~/whalesong/examples $ -}| @section{Examples} @@ -101,47 +64,61 @@ Let's look at a few of them. @subsection{Hello world} Let's try making a simple, standalone executable. At the moment, the -program must be written in the base language of @racket[(planet -dyoo/whalesong)]. This restriction unfortunately prevents arbitrary -@racketmodname[racket/base] programs from compiling at the moment; -the developers (namely, dyoo) will be working to remove this -restriction as quickly as possible. +program should be written in the base language of @racket[(planet +dyoo/whalesong/cs019)], as it provides the language features that +you've been using in cs019 (@racket[local], @racket[shared], etc...), +as well as support for the @racketmodname/this-package[web-world] +package described later in this document. Write a @filepath{hello.rkt} with the following content @filebox["hello.rkt"]{ @codeblock{ - #lang planet dyoo/whalesong - (display "hello world") - (newline) + #lang planet dyoo/whalesong/cs019 + "hello world" }} This program is a regular Racket program, and can be executed normally, @verbatim|{ $ racket hello.rkt -hello world +"hello world" $ }| However, it can also be packaged with @filepath{whalesong}. @verbatim|{ $ whalesong build hello.rkt Writing program #