gwl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Comments on process template syntax


From: Kyle Meyer
Subject: Re: Comments on process template syntax
Date: Wed, 05 Feb 2020 15:29:05 +0000

zimoun <address@hidden> writes:

> Hi Ricardo,
>
> On Tue, 4 Feb 2020 at 11:12, Ricardo Wurmus <address@hidden> wrote:
>
> If I understand correctly, you are proposing this sugar:
>
> 1.
>>    process list-file-template (with filename)
>
> 2.
>>    process list-file-template
>>      with filename
>
> 3.
>>    process list-file-template : with filename
>
>
> The 1. and 2. appear to me nicer that the 3..
>
> As I said, I am not a fan of colon ':' extra space.
> And it is counterintuitive with plain regular English: the rule is
> "word: space" and not "word space : space".
> (Note that it is not the case in French where the rule is "word
> half-space : space".)

Those are just different ways you can write the same thing in Wisp:

Feeding this

--8<---------------cut here---------------start------------->8---
process list-file-template (with filename)

process list-file-template
  with filename

process list-file-template : with filename
--8<---------------cut here---------------end--------------->8---

to wisp2lisp gives:

  (process list-file-template (with filename))
  
  (process list-file-template
    (with filename))
  
  (process list-file-template (with filename))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]