Re: [Jprogramming] Adding leading zeros

2019-02-05 Thread Don Kelly
Thanks,  Raul On 2019-02-05 8:09 a.m., Raul Miller wrote: A more compact variant, in case anyone wants that (though, granted, without safety measures): d12a=: 0 1}.]":@+10x^[ 4 d12a a 0001 0002 0003 0010 0020 0030 0100 0200 0300 0400 1000 2000 3000 A "safer" version would be: d12b=

Re: [Jprogramming] Graphviz

2019-02-05 Thread David Mitchell
Hi Chris, A testable version is here: http://honeoyeincolor.biz/graphviz.zip It is designed to be loaded to ~addons/graphics/graphviz The look and feel are very similar to the look and feel of the 6.02 version. I updated the binaries to the latest version from here: https://graphviz.gitlab

Re: [Jprogramming] Adding leading zeros

2019-02-05 Thread Raul Miller
A more compact variant, in case anyone wants that (though, granted, without safety measures): d12a=: 0 1}.]":@+10x^[ 4 d12a a 0001 0002 0003 0010 0020 0030 0100 0200 0300 0400 1000 2000 3000 A "safer" version would be: d12b=: -@[{."1]":@+10x^[ (Same result, for this example, but properl