From 0b12664f70f258a5928d051b5e71715b84dd37b6 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 17 Jul 2011 14:49:52 -0400 Subject: Tutorial: link to demo and manual --- doc/intro.ur | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'doc/intro.ur') diff --git a/doc/intro.ur b/doc/intro.ur index 4daec308..d7de5ad3 100644 --- a/doc/intro.ur +++ b/doc/intro.ur @@ -6,13 +6,15 @@ val show_string = mkShow (fn s => "\"" ^ s ^ "\"") (* This tutorial by Adam Chlipala is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License. *) -(* This is a tutorial for the Ur/Web programming language. The official project web site is your starting point for information, like a reference manual and a pointer to download the latest code release. In this tutorial, we'll just focus on introducing the language features.
+(* This is a tutorial for the Ur/Web programming language.

Briefly, Ur is a programming language in the tradition of ML and Haskell, but featuring a significantly richer type system. Ur is functional, pure, statically-typed, and strict. Ur supports a powerful kind of metaprogramming based on row types.

Ur/Web is Ur plus a special standard library and associated rules for parsing and optimization. Ur/Web supports construction of dynamic web applications backed by SQL databases, with mixed server-side and client-side applications generated from source code in one language.

-Ur inherits its foundation from ML and Haskell, then going further to add fancier stuff. This first chapter of the tutorial reviews the key ML and Haskell features, giving their syntax in Ur. I do assume reading familiarity with ML and Haskell and won't dwell too much on explaining the imported features. *) +Ur inherits its foundation from ML and Haskell, then going further to add fancier stuff. This first chapter of the tutorial reviews the key ML and Haskell features, giving their syntax in Ur. I do assume reading familiarity with ML and Haskell and won't dwell too much on explaining the imported features.
+
+For information on compiling applications (and for some full example applications), see the intro page of the online demo, with further detail available in the reference manual. *) (* * Basics *) -- cgit v1.2.3