Re: [Jprogramming] J lib question

2020-01-03 Thread Strale
handled through a > >> > single > >> > > >> call to JDo: > >> > > >> > >> > > >> ". 't =: verb define' , LF , 'a =: 111 ' , LF , ')' , LF > >> > > >> |spelling e

Re: [Jprogramming] J lib question

2020-01-02 Thread bill lam
his line >> > > >> >> > > >> Here you get a prompt of 0 spaces, indicating that the JE is >> waiting >> > for >> > > >> keyboard input for the definition >> > > >> >> > > >> a =: 111 >>

Re: [Jprogramming] J lib question

2020-01-02 Thread bill lam
t;> ) > > > >> > > > >> > > > >> After entering ), I get the 3-space prompt indicating the ". verb > > > >> completed execution. > > > >> > > > >> t > > > >> 3 : 'a=:111' >

Re: [Jprogramming] J lib question

2020-01-02 Thread Strale
; 3 : 'a=:111' > > >> > > >> > > >> > > >> I don't know whether there is any way to create a multiline definition > > >> using LF without going through 0!:x. If it's short yo could create > > >> boxe

Re: [Jprogramming] J lib question

2020-01-02 Thread Raul Miller
load is not defined until you have used 0!:x to load the base library, > >> as Bill pointed out. > >> > >> Henry Rich > >> > >> > >> > >> > >> On 1/2/2020 12:37 PM, Strale wrote: > >>>The \r is the right

Re: [Jprogramming] J lib question

2020-01-02 Thread Henry Rich
hu, Jan 2, 2020 at 4:06 PM David Lambert wrote: Perhaps those /r should be \r ? Date: Thu, 2 Jan 2020 12:18:00 +0100 From: Strale To:programm...@jsoftware.com Subject: [Jprogramming] J lib question Message-ID: < cal2u57zrpqnx32dag7v3bdgao6ufhunn6ycq61sgiic6oag...@mail.gmail.com> Cont

Re: [Jprogramming] J lib question

2020-01-02 Thread Strale
it with JDo give me back "value > > error" > > I have also put it in the executable directory but without success. > > > > > > On Thu, Jan 2, 2020 at 4:06 PM David Lambert > wrote: > > > >> Perhaps those /r should be \r ? > >>> Date: Thu, 2 Jan

Re: [Jprogramming] J lib question

2020-01-02 Thread Henry Rich
th JDo give me back "value error" I have also put it in the executable directory but without success. On Thu, Jan 2, 2020 at 4:06 PM David Lambert wrote: Perhaps those /r should be \r ? Date: Thu, 2 Jan 2020 12:18:00 +0100 From: Strale To:programm...@jsoftware.com Subject: [Jprogram

Re: [Jprogramming] J lib question

2020-01-02 Thread Strale
executable directory but without success. On Thu, Jan 2, 2020 at 4:06 PM David Lambert wrote: > Perhaps those /r should be \r ? > > Date: Thu, 2 Jan 2020 12:18:00 +0100 > > From: Strale > > To:programm...@jsoftware.com > > Subject: [Jprogr

Re: [Jprogramming] J lib question

2020-01-02 Thread David Lambert
Perhaps those /r should be \r ? Date: Thu, 2 Jan 2020 12:18:00 +0100 From: Strale To:programm...@jsoftware.com Subject: [Jprogramming] J lib question Message-ID: Content-Type: text/plain; charset="UTF-8" Hello I am trying to mix J with C++ in Linux I have included in my C

Re: [Jprogramming] J lib question

2020-01-02 Thread bill lam
you need to load base library after JInit(). see profile.ijs in bin folder On Thu, Jan 2, 2020, 7:18 PM Strale wrote: > Hello > > I am trying to mix J with C++ in Linux > I have included in my C++ project jfex.h libj.h and libj.so > after calling JInit() I am able to execute simple sentences

[Jprogramming] J lib question

2020-01-02 Thread Strale
Hello I am trying to mix J with C++ in Linux I have included in my C++ project jfex.h libj.h and libj.so after calling JInit() I am able to execute simple sentences with JDo and get the result with JGetA but I am not able to define more sofisticate behaviours ex. define J function with verb defi