markup
authorjim <jim@web>
Wed, 18 Feb 2015 14:17:31 +0000 (09:17 -0500)
committerLinux User <ikiwiki@localhost.members.linode.com>
Wed, 18 Feb 2015 14:17:31 +0000 (09:17 -0500)
topics/week3_unit.mdwn

index e722e8f..afb7a9e 100644 (file)
@@ -221,7 +221,7 @@ with no `.` and final element. The lack of a `.` and final element means that th
 
 A second complication is that FIXME embedded pairs, `cons`.
 
 
 A second complication is that FIXME embedded pairs, `cons`.
 
-We asked before how you specify an imp. We've seen one notation, using an initial single-quote. That works if you're ready to construct the imp without the help of any variables. But if you want to use variables, what should you do? (There is in fact a variation on quotation, called *quasi-quotation* and using the initial prefix <code>`</code> rather than `'` that you could use; but I'm not going to explain that.) If you want to build a *proper* imp, that is, a Scheme list, you can instead use the function/constructor `list`:
+We asked before how you specify an imp. We've seen one notation, using an initial single-quote. That works if you're ready to construct the imp without the help of any variables. But if you want to use variables, what should you do? (There is in fact a variation on quotation, called *quasi-quotation* and using the initial prefix <code>\`</code> rather than `'` that you could use; but I'm not going to explain that.) If you want to build a *proper* imp, that is, a Scheme list, you can instead use the function/constructor `list`:
 
     (list '- 3 y)
 
 
     (list '- 3 y)