[Jprogramming] Attempting to compile jandroid

2020-03-12 Thread 'S Suon' via Programming
Hi, all: Has anyone successfully built jandroid using the instructions here?  jsoftware/jandroid | | | | | | | | | | | jsoftware/jandroid J for Android. Contribute to jsoftware/jandroid development by creating an account on GitHub. | | | One of my primary motivations is to adj

Re: [Jprogramming] Attempting to compile jandroid

2020-03-12 Thread bill lam
I have never used android studio or any other gui development tools to build jandroid. I just type ant release to build, so my experience might not be relevant to others. ide/ja is available also in github assets_version.txt is a created automatically during installation. any version of JDK should

Re: [Jprogramming] modifiers

2020-03-12 Thread Jose Mario Quintana
> because the long sequence of ARs is not a valid AR. Certainly, the purpose of posing those questions was to find out where the permissiveness breaking point would be. This is what, I think, I have learned regarding the tie, train, and (left) agenda arguments in J (as described or might be descr

Re: [Jprogramming] modifiers

2020-03-12 Thread Jose Mario Quintana
I was not stating that all boxed representation (BR) can, or should be, interpreted using the train (`:6) and agenda (@.). I mentioned them just because when I was learning, many years ago, to construct these (almost surely illegal) forms supported by the interpreter, the related BRs were enlighte

[Jprogramming] Iteration

2020-03-12 Thread Skip Cave
How can I generate the following result extended 50 times, without explicit looping? (6?55);(6?55);(6?55);(6?55);(6?55) ┌───┬───┬─┬─┬───┐ │13 4 19 43 3 52│10 1 4 46 52 11│38 12 48 50 54 45│36 54 39 35 53 50│44 1 7 54 11 41│ └──

Re: [Jprogramming] Iteration

2020-03-12 Thread Roger Hui
6 ?&.> 5 $ 55 ┌┬─┬───┬─┬───┐ │47 28 45 25 8 36│22 40 23 20 11 49│15 16 42 38 4 5│50 45 38 37 13 28│42 4 36 7 23 49│ └┴─┴───┴─┴───┘ 6 ?&.> 50 $ 55 ..

Re: [Jprogramming] Iteration

2020-03-12 Thread Devon McCormick
6 5?@$55 Will give you a 6x5 table that is 6 independent rows of 5?55. On Fri, Mar 13, 2020 at 12:52 AM Roger Hui wrote: >6 ?&.> 5 $ 55 > > ┌┬─┬───┬─┬───┐ > │47 28 45 25 8 36│22 40 23 20 11 49│15 16 42 38 4 5│50 45 3

[Jprogramming] String sort, possible bug

2020-03-12 Thread 'Jon Hough' via Programming
Consider the wrods: words =: 'a';'z';'zza';'abc';'zabc';'abbb' sort words ┌─┬─┬┬───┬┬───┐ │a│z│abbb│abc│zabc│zza│ └─┴─┴┴───┴┴───┘ the sorted words are not correctly (lexicographically) sorted. If I replace 'z' with 'z ' (space after z character) words =: 'a';'z ';'zza';'a

Re: [Jprogramming] Iteration

2020-03-12 Thread Skip Cave
Wow! Two completely different ways to generate multiple sets of random integers. Roger used &. which I haven't really ever used or understood. I will definitely need to understand &. for the future. Devon used @, which I also haven't used very much. I need to find some practice and training exampl

Re: [Jprogramming] String sort, possible bug

2020-03-12 Thread Thomas McGuire
The first 2 of the list have no rank. $ each words $ each words ┌┬┬─┬─┬─┬─┐ │││3│3│4│4│ └┴┴─┴─┴─┴─┘ words =: (1$'a');(1$'z');'zza';'abc';'zabc';’abbb' $ each words ┌─┬─┬─┬─┬─┬─┐ │1│1│3│3│4│4│ └─┴─┴─┴─┴─┴─┘ sort words ┌─┬┬───┬─┬┬───┐ │a│abbb│abc│z│zabc│zza│ └─┴┴───┴─┴┴───┘ A

Re: [Jprogramming] Iteration

2020-03-12 Thread ethiejiesa via Programming
Won't that give a 6x5 table of ?55 instead? 6 5?@$55 <-> ? 6 5 $ 55 Devon McCormick wrote: >6 5?@$55 > Will give you a 6x5 table that is 6 independent rows of 5?55. > > > On Fri, Mar 13, 2020 at 12:52 AM Roger Hui > wrote: > > >6 ?&.> 5 $ 55 > > > > ┌┬