adam@1500: (* Chapter 1: Introduction *)
adam@1494:
adam@1497: (* begin hide *)
adam@1497: val show_string = mkShow (fn s => "\"" ^ s ^ "\"")
adam@1497: (* end *)
adam@1495:
adam@1497: (* This tutorial by Adam Chlipala is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License. *)
adam@1493:
adam@1511: (* This is a tutorial for the Ur/Web programming language.
adam@1510:
adam@1513: 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.
adam@1510:
adam@1510: 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.
adam@1510:
adam@1511: 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.
adam@1511:
adam@1511: 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. *)
adam@1497:
adam@1497: (* * Basics *)
adam@1497:
adam@1501: (* Let's start with features shared with both ML and Haskell. First, we have the basic numeric, string, and Boolean stuff. (In the following examples, == is used to indicate the result of evaluating an expression. It's not valid Ur syntax!) *)
adam@1493:
adam@1493: (* begin eval *)
adam@1497: 1 + 1
adam@1493: (* end *)
adam@1493:
adam@1497: (* begin eval *)
adam@1497: 1.2 + 3.4
adam@1497: (* end *)
adam@1496:
adam@1497: (* begin eval *)
adam@1497: "Hello " ^ "world!"
adam@1497: (* end *)
adam@1497:
adam@1497: (* begin eval *)
adam@1497: 1 + 1 < 6
adam@1497: (* end *)
adam@1497:
adam@1497: (* begin eval *)
adam@1497: 0.0 < -3.2
adam@1497: (* end *)
adam@1497:
adam@1497: (* begin eval *)
adam@1497: "Hello" = "Goodbye" || (1 * 2 <> 8 && True <> False)
adam@1497: (* end *)
adam@1497:
adam@1497: (* We also have function definitions with type inference for parameter and return types. *)
adam@1497:
adam@1497: fun double n = 2 * n
adam@1497:
adam@1497: (* begin eval *)
adam@1497: double 8
adam@1497: (* end *)
adam@1497:
adam@1497: fun fact n = if n = 0 then 1 else n * fact (n - 1)
adam@1497:
adam@1497: (* begin eval *)
adam@1497: fact 5
adam@1497: (* end *)
adam@1497:
adam@1502: fun isEven n = n = 0 || isOdd (n - 1)
adam@1502: and isOdd n = n = 1 || isEven (n - 1)
adam@1502:
adam@1502: (* begin eval *)
adam@1502: isEven 32
adam@1502: (* end *)
adam@1502:
adam@1502:
adam@1497: (* Of course we have anonymous functions, too. *)
adam@1497:
adam@1497: val inc = fn x => x + 1
adam@1497:
adam@1497: (* begin eval *)
adam@1497: inc 3
adam@1497: (* end *)
adam@1497:
adam@1497: (* Then there's parametric polymorphism. Unlike in ML and Haskell, polymorphic functions in Ur/Web often require full type annotations. That is because more advanced features (which we'll get to in the next chapter) make Ur type inference undecidable. *)
adam@1497:
adam@1497: fun id [a] (x : a) : a = x
adam@1497:
adam@1497: (* begin eval *)
adam@1497: id "hi"
adam@1497: (* end *)
adam@1497:
adam@1497: fun compose [a] [b] [c] (f : b -> c) (g : a -> b) (x : a) : c = f (g x)
adam@1497:
adam@1497: (* begin eval *)
adam@1497: compose inc inc 3
adam@1497: (* end *)
adam@1498:
adam@1502: (* The option type family is like ML's option or Haskell's Maybe. We also have a case expression form lifted directly from ML. Note that, while Ur follows most syntactic conventions of ML, one key difference is that type family names appear before their arguments, as in Haskell. *)
adam@1498:
adam@1498: fun predecessor (n : int) : option int = if n >= 1 then Some (n - 1) else None
adam@1498:
adam@1498: (* begin hide *)
adam@1498: fun show_option [t] (_ : show t) : show (option t) =
adam@1498: mkShow (fn x => case x of
adam@1498: None => "None"
adam@1498: | Some x => "Some(" ^ show x ^ ")")
adam@1498: (* end *)
adam@1498:
adam@1498: (* begin eval *)
adam@1498: predecessor 6
adam@1498: (* end *)
adam@1498:
adam@1498: (* begin eval *)
adam@1498: predecessor 0
adam@1498: (* end *)
adam@1499:
adam@1499: (* Naturally, there are lists, too! *)
adam@1499:
adam@1499: val numbers : list int = 1 :: 2 :: 3 :: []
adam@1499: val strings : list string = "a" :: "bc" :: []
adam@1499:
adam@1499: fun length [a] (ls : list a) : int =
adam@1499: case ls of
adam@1499: [] => 0
adam@1499: | _ :: ls' => 1 + length ls'
adam@1499:
adam@1499: (* begin eval *)
adam@1499: length numbers
adam@1499: (* end *)
adam@1499:
adam@1499: (* begin eval *)
adam@1499: length strings
adam@1499: (* end *)
adam@1500:
adam@1502: (* And lists make a good setting for demonstrating higher-order functions and local functions. (This example also introduces one idiosyncrasy of Ur, which is that map is a keyword, so we name our "map" function mp.) *)
adam@1500:
adam@1500: (* begin hide *)
adam@1500: fun show_list [t] (_ : show t) : show (list t) =
adam@1500: mkShow (let
adam@1500: fun shower (ls : list t) =
adam@1500: case ls of
adam@1500: [] => "[]"
adam@1500: | x :: ls' => show x ^ " :: " ^ shower ls'
adam@1500: in
adam@1500: shower
adam@1500: end)
adam@1500: (* end *)
adam@1500:
adam@1500: fun mp [a] [b] (f : a -> b) : list a -> list b =
adam@1500: let
adam@1500: fun loop (ls : list a) =
adam@1500: case ls of
adam@1500: [] => []
adam@1500: | x :: ls' => f x :: loop ls'
adam@1500: in
adam@1500: loop
adam@1500: end
adam@1500:
adam@1500: (* begin eval *)
adam@1500: mp inc numbers
adam@1500: (* end *)
adam@1500:
adam@1500: (* begin eval *)
adam@1500: mp (fn s => s ^ "!") strings
adam@1500: (* end *)
adam@1500:
adam@1500: (* We can define our own polymorphic datatypes and write higher-order functions over them. *)
adam@1500:
adam@1500: datatype tree a = Leaf of a | Node of tree a * tree a
adam@1500:
adam@1500: (* begin hide *)
adam@1500: fun show_tree [t] (_ : show t) : show (tree t) =
adam@1500: mkShow (let
adam@1500: fun shower (t : tree t) =
adam@1500: case t of
adam@1500: Leaf x => "Leaf(" ^ show x ^ ")"
adam@1500: | Node (t1, t2) => "Node(" ^ shower t1 ^ ", " ^ shower t2 ^ ")"
adam@1500: in
adam@1500: shower
adam@1500: end)
adam@1500: (* end *)
adam@1500:
adam@1500: fun size [a] (t : tree a) : int =
adam@1500: case t of
adam@1500: Leaf _ => 1
adam@1500: | Node (t1, t2) => size t1 + size t2
adam@1500:
adam@1500: (* begin eval *)
adam@1500: size (Node (Leaf 0, Leaf 1))
adam@1500: (* end *)
adam@1500:
adam@1500: (* begin eval *)
adam@1500: size (Node (Leaf 1.2, Node (Leaf 3.4, Leaf 4.5)))
adam@1500: (* end *)
adam@1500:
adam@1500: fun tmap [a] [b] (f : a -> b) : tree a -> tree b =
adam@1500: let
adam@1500: fun loop (t : tree a) : tree b =
adam@1500: case t of
adam@1500: Leaf x => Leaf (f x)
adam@1500: | Node (t1, t2) => Node (loop t1, loop t2)
adam@1500: in
adam@1500: loop
adam@1500: end
adam@1500:
adam@1500: (* begin eval *)
adam@1500: tmap inc (Node (Leaf 0, Leaf 1))
adam@1500: (* end *)
adam@1500:
adam@1501: (* We also have anonymous record types, as in Standard ML. The next chapter will show that there is quite a lot more going on here with records than in SML or OCaml, but we'll stick to the basics in this chapter. We will add one tantalizing hint of what's to come by demonstrating the record concatention operator ++ and the record field removal operator --. *)
adam@1500:
adam@1500: val x = { A = 0, B = 1.2, C = "hi", D = True }
adam@1500:
adam@1500: (* begin eval *)
adam@1500: x.A
adam@1500: (* end *)
adam@1500:
adam@1500: (* begin eval *)
adam@1500: x.C
adam@1500: (* end *)
adam@1500:
adam@1500: type myRecord = { A : int, B : float, C : string, D : bool }
adam@1500:
adam@1500: fun getA (r : myRecord) = r.A
adam@1500:
adam@1500: (* begin eval *)
adam@1500: getA x
adam@1500: (* end *)
adam@1500:
adam@1500: (* begin eval *)
adam@1500: getA (x -- #A ++ {A = 4})
adam@1500: (* end *)
adam@1500:
adam@1500: val y = { A = "uhoh", B = 2.3, C = "bye", D = False }
adam@1500:
adam@1500: (* begin eval *)
adam@1500: getA (y -- #A ++ {A = 5})
adam@1500: (* end *)
adam@1501:
adam@1501:
adam@1501: (* * Borrowed from ML *)
adam@1501:
adam@1502: (* Ur includes an ML-style module system. The most basic use case involves packaging abstract types with their "methods." *)
adam@1501:
adam@1501: signature COUNTER = sig
adam@1501: type t
adam@1501: val zero : t
adam@1501: val increment : t -> t
adam@1501: val toInt : t -> int
adam@1501: end
adam@1501:
adam@1501: structure Counter : COUNTER = struct
adam@1501: type t = int
adam@1502: val zero = 0
adam@1501: val increment = plus 1
adam@1501: fun toInt x = x
adam@1501: end
adam@1501:
adam@1501: (* begin eval *)
adam@1501: Counter.toInt (Counter.increment Counter.zero)
adam@1501: (* end *)
adam@1501:
adam@1502: (* We may package not just abstract types, but also abstract type families. Here we see our first use of the con keyword, which stands for constructor. Constructors are a generalization of types to include other "compile-time things"; for instance, basic type families, which are assigned the kind Type -> Type. Kinds are to constructors as types are to normal values. We also see how to write the type of a polymorphic function, using the ::: syntax for type variable binding. This ::: differs from the :: used with the con keyword because it marks a type parameter as implicit, so that it need not be supplied explicitly at call sites. Such an option is the only one available in ML and Haskell, but, in the next chapter, we'll meet cases where it is appropriate to use explicit constructor parameters. *)
adam@1501:
adam@1501: signature STACK = sig
adam@1501: con t :: Type -> Type
adam@1501: val empty : a ::: Type -> t a
adam@1501: val push : a ::: Type -> t a -> a -> t a
adam@1525: val peek : a ::: Type -> t a -> option a
adam@1525: val pop : a ::: Type -> t a -> option (t a)
adam@1501: end
adam@1501:
adam@1501: structure Stack : STACK = struct
adam@1501: con t = list
adam@1501: val empty [a] = []
adam@1501: fun push [a] (t : t a) (x : a) = x :: t
adam@1525: fun peek [a] (t : t a) = case t of
adam@1525: [] => None
adam@1525: | x :: _ => Some x
adam@1501: fun pop [a] (t : t a) = case t of
adam@1525: [] => None
adam@1525: | _ :: t' => Some t'
adam@1501: end
adam@1501:
adam@1501: (* begin eval *)
adam@1525: Stack.peek (Stack.push (Stack.push Stack.empty "A") "B")
adam@1501: (* end *)
adam@1501:
adam@1501: (* Ur also inherits the ML concept of functors, which are functions from modules to modules. *)
adam@1501:
adam@1501: datatype order = Less | Equal | Greater
adam@1501:
adam@1501: signature COMPARABLE = sig
adam@1501: type t
adam@1501: val compare : t -> t -> order
adam@1501: end
adam@1501:
adam@1501: signature DICTIONARY = sig
adam@1501: type key
adam@1501: con t :: Type -> Type
adam@1501: val empty : a ::: Type -> t a
adam@1501: val insert : a ::: Type -> t a -> key -> a -> t a
adam@1501: val lookup : a ::: Type -> t a -> key -> option a
adam@1501: end
adam@1501:
adam@1501: functor BinarySearchTree(M : COMPARABLE) : DICTIONARY where type key = M.t = struct
adam@1501: type key = M.t
adam@1501: datatype t a = Leaf | Node of t a * key * a * t a
adam@1501:
adam@1501: val empty [a] = Leaf
adam@1501:
adam@1501: fun insert [a] (t : t a) (k : key) (v : a) : t a =
adam@1501: case t of
adam@1501: Leaf => Node (Leaf, k, v, Leaf)
adam@1501: | Node (left, k', v', right) =>
adam@1502: case M.compare k k' of
adam@1501: Equal => Node (left, k, v, right)
adam@1501: | Less => Node (insert left k v, k', v', right)
adam@1501: | Greater => Node (left, k', v', insert right k v)
adam@1501:
adam@1501: fun lookup [a] (t : t a) (k : key) : option a =
adam@1501: case t of
adam@1501: Leaf => None
adam@1501: | Node (left, k', v, right) =>
adam@1502: case M.compare k k' of
adam@1501: Equal => Some v
adam@1501: | Less => lookup left k
adam@1501: | Greater => lookup right k
adam@1501: end
adam@1501:
adam@1501: structure IntTree = BinarySearchTree(struct
adam@1501: type t = int
adam@1501: fun compare n1 n2 =
adam@1501: if n1 = n2 then
adam@1501: Equal
adam@1501: else if n1 < n2 then
adam@1501: Less
adam@1501: else
adam@1501: Greater
adam@1501: end)
adam@1501:
adam@1501: (* begin eval *)
adam@1501: IntTree.lookup (IntTree.insert (IntTree.insert IntTree.empty 0 "A") 1 "B") 1
adam@1501: (* end *)
adam@1501:
adam@1501: (* It is sometimes handy to rebind modules to shorter names. *)
adam@1501:
adam@1501: structure IT = IntTree
adam@1501:
adam@1501: (* begin eval *)
adam@1501: IT.lookup (IT.insert (IT.insert IT.empty 0 "A") 1 "B") 0
adam@1501: (* end *)
adam@1501:
adam@1501: (* One can even use the open command to import a module's namespace wholesale, though this can make it harder for someone reading code to tell which identifiers come from which modules. *)
adam@1501:
adam@1501: open IT
adam@1501:
adam@1501: (* begin eval *)
adam@1501: lookup (insert (insert empty 0 "A") 1 "B") 2
adam@1501: (* end *)
adam@1502:
adam@1502: (* Ur adopts OCaml's approach to splitting projects across source files. When a project contains files foo.ur and foo.urs, these are taken as defining a module named Foo whose signature is drawn from foo.urs and whose implementation is drawn from foo.ur. If foo.ur exists without foo.urs, then module Foo is defined without an explicit signature, so that it is assigned its principal signature, which exposes all typing details without abstraction. *)
adam@1502:
adam@1502:
adam@1502: (* * Borrowed from Haskell *)
adam@1502:
adam@1502: (* Ur includes a take on type classes. For instance, here is a generic "max" function that relies on a type class ord. Notice that the type class membership witness is treated like an ordinary function parameter, though we don't assign it a name here, because type inference figures out where it should be used. The more advanced examples of the next chapter will include cases where we manipulate type class witnesses explicitly. *)
adam@1502:
adam@1502: fun max [a] (_ : ord a) (x : a) (y : a) : a =
adam@1502: if x < y then
adam@1502: y
adam@1502: else
adam@1502: x
adam@1502:
adam@1502: (* begin eval *)
adam@1502: max 1 2
adam@1502: (* end *)
adam@1502:
adam@1502: (* begin eval *)
adam@1502: max "ABC" "ABA"
adam@1502: (* end *)
adam@1502:
adam@1502: (* The idiomatic way to define a new type class is to stash it inside a module, like in this example: *)
adam@1502:
adam@1502: signature DOUBLE = sig
adam@1502: class double
adam@1502: val double : a ::: Type -> double a -> a -> a
adam@1502: val mkDouble : a ::: Type -> (a -> a) -> double a
adam@1502:
adam@1502: val double_int : double int
adam@1502: val double_string : double string
adam@1502: end
adam@1502:
adam@1502: structure Double : DOUBLE = struct
adam@1502: class double a = a -> a
adam@1502:
adam@1502: fun double [a] (f : double a) (x : a) : a = f x
adam@1502: fun mkDouble [a] (f : a -> a) : double a = f
adam@1502:
adam@1502: val double_int = mkDouble (times 2)
adam@1502: val double_string = mkDouble (fn s => s ^ s)
adam@1502: end
adam@1502:
adam@1502: open Double
adam@1502:
adam@1502: (* begin eval *)
adam@1502: double 13
adam@1502: (* end *)
adam@1502:
adam@1502: (* begin eval *)
adam@1502: double "ho"
adam@1502: (* end *)
adam@1502:
adam@1502: val double_float = mkDouble (times 2.0)
adam@1502:
adam@1502: (* begin eval *)
adam@1502: double 2.3
adam@1502: (* end *)
adam@1502:
adam@1502: (* That example had a mix of instances defined with a class and instances defined outside its module. Its possible to create closed type classes simply by omitting from the module an instance creation function like mkDouble. This way, only the instances you decide on may be allowed, which enables you to enforce program-wide invariants over instances. *)
adam@1502:
adam@1502: signature OK_TYPE = sig
adam@1502: class ok
adam@1502: val importantOperation : a ::: Type -> ok a -> a -> string
adam@1502: val ok_int : ok int
adam@1502: val ok_float : ok float
adam@1502: end
adam@1502:
adam@1502: structure OkType : OK_TYPE = struct
adam@1502: class ok a = unit
adam@1502: fun importantOperation [a] (_ : ok a) (_ : a) = "You found an OK value!"
adam@1502: val ok_int = ()
adam@1502: val ok_float = ()
adam@1502: end
adam@1502:
adam@1502: open OkType
adam@1502:
adam@1502: (* begin eval *)
adam@1502: importantOperation 13
adam@1502: (* end *)
adam@1502:
adam@1502: (* Like Haskell, Ur supports the more general notion of constructor classes, whose instances may be parameterized over constructors with kinds beside Type. Also like in Haskell, the flagship constructor class is monad. Ur/Web's counterpart of Haskell's IO monad is transaction, which indicates the tight coupling with transactional execution in server-side code. Just as in Haskell, transaction must be used to create side-effecting actions, since Ur is purely functional (but has eager evaluation). Here is a quick example transaction, showcasing Ur's variation on Haskell do notation. *)
adam@1502:
adam@1502: val readBack : transaction int =
adam@1502: src <- source 0;
adam@1502: set src 1;
adam@1502: n <- get src;
adam@1502: return (n + 1)
adam@1502:
adam@1502: (* We get ahead of ourselves a bit here, as this example uses functions associated with client-side code to create and manipulate a mutable data source. *)