From be93b5b1ae1edd4d579a6085e0b82063dfc82d8a Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 20 May 2013 17:25:26 -0400 Subject: [PATCH] Comment out mention of other #langs --- marketplace/scribblings/highlevel.scrbl | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/marketplace/scribblings/highlevel.scrbl b/marketplace/scribblings/highlevel.scrbl index 6373769..e371a4c 100644 --- a/marketplace/scribblings/highlevel.scrbl +++ b/marketplace/scribblings/highlevel.scrbl @@ -17,10 +17,14 @@ interface} of a Unix-like operating system. @section[#:tag "hashlang-variations"]{Using @tt{#lang marketplace} and friends} +@;{ @defmodulelang*[(marketplace marketplace/flow-control marketplace/typed marketplace/typed/flow-control)] +} + +@defmodulelang[marketplace] Programs written for Marketplace differ from normal Racket modules only in their selection of language. A Racket module written with @@ -30,8 +34,14 @@ and startup @tech{actions} for an application. Typically, initial actions spawn application processes and nested VMs, which in turn subscribe to sources of events from the outside world. -There are a handful of variant languages to choose from: +At present, there's just @tt{#lang marketplace}. In future, there will +be a variation for Typed Racket, and languages providing greater +support for flow control, responsibility transfer, and other +networking concepts. For now, Typed Racket programs must be written as +@tt{#lang typed/racket} programs using @racket[(require marketplace)] +and @racket[ground-vm:] explicitly. +@;{ @itemlist[ @item{@racket[marketplace] is for @emph{untyped} programs, and uses @@ -48,6 +58,7 @@ There are a handful of variant languages to choose from: @racket[marketplace/flow-control], but for typed programs.} ] +} @section{Using Marketplace as a library}