From e6c9104eb92c9ef595d0b6f352e311164287a7f1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 22 Oct 2007 06:34:15 +0000 Subject: Check in part 2: parser and ast. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43218 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/tutorial/LangImpl1.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/tutorial/LangImpl1.html') diff --git a/docs/tutorial/LangImpl1.html b/docs/tutorial/LangImpl1.html index 49ad181..a699ed6 100644 --- a/docs/tutorial/LangImpl1.html +++ b/docs/tutorial/LangImpl1.html @@ -56,7 +56,7 @@ which looks like this:

 # Compute the x'th fibonacci number.
 def fib(x)
-  if x < 3 then
+  if x < 3 then
     1
   else
     fib(x-1)+fib(x-2)
@@ -241,8 +241,8 @@ this code:

With this, we have the complete lexer for the basic Kaleidoscope language. Next we'll build a simple parser that uses this to -build an Abstract Syntax Tree. If you prefer, you can jump to the main tutorial index page. +build an Abstract Syntax Tree. When we have that, we'll include a driver +so that you can use the lexer and parser together.

-- cgit v1.1