File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -327,16 +327,16 @@ parsing `key=val` pairs inside parentheses.
327
327
328
328
* ` let ` bindings might be stored in a block, or they might not be, depending on
329
329
special cases:
330
- ```
331
- # Special cases not in a block
332
- let x=1 ; end ==> (let (= x 1) (block))
333
- let x::1 ; end ==> (let (:: x 1) (block))
334
- let x ; end ==> (let x (block))
335
-
336
- # In a block
337
- let x=1,y=2 ; end ==> (let (block (= x 1) (= y 2) (block)))
338
- let x+=1 ; end ==> (let (block (+= x 1)) (block))
339
- ```
330
+ ``` julia
331
+ # Special cases not in a block
332
+ let x= 1 ; end # ==> (let (= x 1) (block))
333
+ let x: :1 ; end # ==> (let (:: x 1) (block))
334
+ let x ; end # ==> (let x (block))
335
+
336
+ # In a block
337
+ let x= 1 ,y= 2 ; end # ==> (let (block (= x 1) (= y 2) (block)))
338
+ let x+= 1 ; end # ==> (let (block (+= x 1)) (block))
339
+ ```
340
340
341
341
* The ` elseif ` condition is always in a block but not the ` if ` condition.
342
342
Presumably because of the need to add a line number node in the flisp parser
You can’t perform that action at this time.
0 commit comments