no no, you will not end up with multi levels, the whole idea is to have a
step by step language processor,
so instead of:
<aiki
  if (foo == bar) {
    <p>foo bar</p>
    <aiki if (bar == baz) {
        <p>baz quux</p>
    }
    aiki>
  }
aiki>

you only do:

<aiki
  if (foo == bar) {
    <p>foo bar</p>
     if (bar == baz) {
        <p>baz quux</p>
    }
  }
aiki>


this is natural an this is what people expect it's not the matter of having
(aiki( or <aiki it's the principal of functional language processor.
--
Bassel Safadi | http://bassel.ws
Skype: i.know.sy | Global: +1-323-545-3855


On Fri, Feb 3, 2012 at 9:09 PM, Jakub Jankiewicz <[email protected]> wrote:

> <aiki
>   if (foo == bar) {
>     <p>foo bar</p>
>     <aiki if (bar == baz) {
>         <p>baz quux</p>
>     }
>     aiki>
>   }
> aiki>
>
_______________________________________________
Mailing list: https://launchpad.net/~aikiframework-devel
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~aikiframework-devel
More help   : https://help.launchpad.net/ListHelp

Reply via email to