横に要素を並べる文法

2016/03/19

Tweet

実は横に並んでたほうが見やすいコードなのではないかと考えてみる. (パースが難しいとかは目をつぶろう)

if else

これまで

if a == 0:
    print(True)
else:
    print(False)

これから

a == 0
if:              else:
  print(True)      print(False)

columns

これまで

<columns>
  <column>
    this is one
  <column>
  <column>
    this is two
  <column>
<columns>

これから

<columns>
  <column>      <column>
    this is one   this is two
  <column>      <column>
<columns>

感想

まぁ ヴィジュアルプログラミング言語とかなのかもしれない.