Re: Python syntax in Lisp and Scheme
prunesquallor@c omcast.net writes:[color=blue]
> You misunderstand me. In a python block, two expressions are
> associated with each other if they are the same distance from the left
> edge. This is isomorphic to having a nametag identifying the scope
> of the line. Lines are associated with each other iff they have the
> same nametag. Change one, and all must change.[/color]
Exactly. What was that language where you wrote tags to indicate the
indenting of data structures:
01 DREP.
02 NO-REPR PIC 9999.
02 NO-SOTR PIC 9999.
02 NOM PIC X(20).
02 PRENOM PIC X(15).
02 A PIC 9.
02 B PIC 9.
02 FILLER PIC X.
02 D PIC 9.
02 FILLER PIC X(33).
01 DVTE.
02 NO-SOTV PIC 9999.
02 NO-REPV PIC 9999.
02 MTV PIC 9(6)V99.
02 FILLER PIC X(64).
[color=blue]
> If, instead, you use balanced delimiters, then a subexpression no
> longer has to encode its position within the containing expression.
> [...][/color]
--
__Pascal_Bourgu ignon__
Do not adjust your mind, there is a fault in reality.
prunesquallor@c omcast.net writes:[color=blue]
> You misunderstand me. In a python block, two expressions are
> associated with each other if they are the same distance from the left
> edge. This is isomorphic to having a nametag identifying the scope
> of the line. Lines are associated with each other iff they have the
> same nametag. Change one, and all must change.[/color]
Exactly. What was that language where you wrote tags to indicate the
indenting of data structures:
01 DREP.
02 NO-REPR PIC 9999.
02 NO-SOTR PIC 9999.
02 NOM PIC X(20).
02 PRENOM PIC X(15).
02 A PIC 9.
02 B PIC 9.
02 FILLER PIC X.
02 D PIC 9.
02 FILLER PIC X(33).
01 DVTE.
02 NO-SOTV PIC 9999.
02 NO-REPV PIC 9999.
02 MTV PIC 9(6)V99.
02 FILLER PIC X(64).
[color=blue]
> If, instead, you use balanced delimiters, then a subexpression no
> longer has to encode its position within the containing expression.
> [...][/color]
--
__Pascal_Bourgu ignon__
Do not adjust your mind, there is a fault in reality.
Comment