You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/Using.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ been compiled), variables in Interlisp are dynamically scoped. This
47
47
means that variables are visible within the dynamic environment they
48
48
are in. For example, let's say we create two functions `FUN1`
49
49
and `FUN2`. If `FUN1` introduced a local variable and then
50
-
called `FUN2`, then `FUN2} would have access to the variable
50
+
called `FUN2`, then `FUN2` would have access to the variable
51
51
since it is in the dynamic environment of being called by `FUN1`.
52
52
In other words, the variable was in existence when `FUN2` was
53
53
called. However, the Interlisp compiler "hides" variables unless
@@ -70,7 +70,7 @@ and a function named `ABC` that are unrelated.
70
70
Interlisp shares the notion of `LAMBDA` expressions with Common Lisp,
71
71
as a way of defining functions. Interlisp `LAMBDA` specifies a list
72
72
of parameters; Common Lisp parameter lists can be decorated with
73
-
`:OPTIONAL`, `:REST` and `:KEYWORD` parameters. Interlisp also
73
+
`&OPTIONAL`, `&REST` and `&KEYWORD` parameters. Interlisp also
74
74
adds the notion of an `NLAMBDA` function that doesn't evaluate
75
75
its arguments -- arguments to
76
76
`NLAMBDA` function are passed directly into a function without
@@ -131,4 +131,4 @@ Medley Interlisp also includes an online reference:
131
131
_or_, at any prompt, the `man` command will look up an (Interlisp) symbol.
132
132
133
133
------------
134
-
_Many thanks to [Blake McBride](https://github.com/blakemcbride) and his [Medley Intro](https://github.com/blakemcbride/medley-intro) from which this was initially taken._
134
+
_Many thanks to [Blake McBride](https://github.com/blakemcbride) and his [Medley Intro](https://github.com/blakemcbride/medley-intro) from which this was initially taken._
0 commit comments