From 90c4c60699069b496491b81ee63b5a45ffd638cb Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 12 May 2021 14:43:04 +0200 Subject: [PATCH] Update README, and replace links to github with links to git.syndicate-lang.org --- README.md | 14 +++++++++++++- syndicate-examples/netstack/main.rkt | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf19957..1287f47 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,17 @@ # Second Racket implementation of Syndicate +## Quickstart + + raco pkg install syndicate + +or + + git clone https://git.syndicate-lang.org/syndicate-lang/syndicate-rkt + cd syndicate-rkt + make link + +For more detail, [see below](#compiling-and-running-the-code). + ## The language itself This repository contains a [Racket](http://racket-lang.org/) @@ -26,7 +38,7 @@ itself. It gains a *significant* performance advantage by doing so. Programs seem to be about *20x faster* (compared to the -[previous implementation](https://github.com/tonyg/syndicate/tree/master/racket)). +[previous implementation](https://git.syndicate-lang.org/syndicate-lang/syndicate-2017/src/branch/main/racket)). Some are only 10x faster, some are 30x faster. The implementation techniques herein are the subject of a forthcoming diff --git a/syndicate-examples/netstack/main.rkt b/syndicate-examples/netstack/main.rkt index 87cc7d4..5f14480 100644 --- a/syndicate-examples/netstack/main.rkt +++ b/syndicate-examples/netstack/main.rkt @@ -82,7 +82,7 @@ "\r\n" "

Hello world from syndicate-netstack!

\n" "

This is running on syndicate's own\n" - "\n" + "\n" "TCP/IP stack.

\n" "

There have been ~a requests prior to this one.

\n") counter)))