light editing

This commit is contained in:
Danny Yoo 2011-07-22 13:56:25 -04:00
parent fa75c2b3dc
commit 5ebf716f69

View File

@ -56,58 +56,58 @@ What needs to be done next?
The story for the presentation: The story for the presentation:
What's Whalesong? It's a Racket to JavaScript compiler. Here's an
example of it in action.
(Compile a very simple program to a web page, a computation, then show
that it's effective.)
Whalesong will be used to support World programming for the web. For What's Whalesong? It's a Racket to JavaScript compiler. Whalesong
example, we can support simple animations, as you'd expect: will be used to support World programming for the web. It will be the
evaluator for the upcoming versions of Moby Scheme, as well as
WeScheme.
We can support simple animations, as you'd expect:
(Show a world program: the falling rain drops program.) (Show a world program: the falling rain drops program.)
We can do programs that have interactivity, such as:
But we can also do programs that have interactivity, such as:
(Show another world program: pacman.) (Show another world program: pacman.)
A core idea behind Whalesong is to reuse Racket's infrastructure as A core idea behind Whalesong is to reuse Racket's infrastructure as
much as possible. I'm not a compiler person. I can piggiback on much as possible. I'm not a compiler person, so I cheat, by
Matthew's work, though. Whalesong reuses the bytecode compiler, and piggibacking on Matthew's work. Whalesong reuses the bytecode
translates the bytecode to JavaScript. I really am reusing the compiler, and translates the bytecode to JavaScript.
linguistic features of Racket. For example, let's look at the
less-than-impressive program output below. I really am reusing the linguistic features of Racket. For example,
let's look at the less-than-impressive program output below.
(Show the hello world program) (Show the hello world program)
This is not too impressive. But let's look at the source code. This is trivial, right? Let's look at the source code.
(Show the BF program.) (Reveal that the program was written in BF)
Yeah. So we really are using Racket's underlying language features to Yes, this is unholy, but it works. We really are using Racket's
handle things like macro expansion. underlying language features to handle reading, macro expansion, and
optimization.
Because we're on the web, we may even want to use functions that we've Because we're on the web, we may even want to use functions that we've
written in Racket as a part of regular web pages. Whalesong lets you written in Racket as a part of regular web pages. Whalesong lets us
do this. do this.
(Show the factorial example, and how it can be used by external (Show the factorial example, and how it can be used by external
JavaScript on a web page). JavaScript on a web page.)
There's quite a bit that's missing: we don't yet have all of the There's quite a bit that's missing: we don't yet have all of the
primitives necessary to compile racket/base, so all Whalesong programs primitives necessary to compile racket/base, so all Whalesong programs
have to be in a language that ultimately bottoms to (planet currently have to be in a language that ultimately bottoms to (planet
dyoo/whalesong/lang/base). dyoo/whalesong/lang/base).
I'm going to get a release out in the following month, and the new I'm going to get a release out in the following month, and the new
@ -115,5 +115,4 @@ versions of Moby Scheme for Smartphones, as well as the WeScheme
environment, will be using the underlying evaluator of Whalesong. environment, will be using the underlying evaluator of Whalesong.
If you're interested, please talk to me during the break. Thanks! If you're interested, please talk to me during the break. Thanks!