sammoorhouse / aplusdotnet

A+ is a proprietary, array-based programming language developed and maintained at Morgan Stanley. A+.Net is a version of the language targeting the .Net CLR.
http://www.aplusdev.org/
2 stars 0 forks source link

Incorrect display for nested arrays #14

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Correct the nested vectors/arrays displayer algorithm.

Example: (;(2;iota 2 3;(67; `s);9 8))

Result in A+:

<
< <  2
  <  0 1 2
     3 4 5
  < <  67
    <  `s
  <  9 8

Bad result in A+.NET:

<
< < 2
< 0 1 2
3 4 5

< < 67
< `s
< 9 8

Original issue reported on code.google.com by batori.c...@gmail.com on 21 Jun 2011 at 2:27

GoogleCodeExporter commented 8 years ago

Original comment by galpe...@inf.u-szeged.hu on 22 Jun 2011 at 1:34

GoogleCodeExporter commented 8 years ago

Original comment by galpe...@inf.u-szeged.hu on 19 Aug 2011 at 11:48