yeh this was the problem. I've tried to load a profile in as per the
tutorial but never quite managed to get that working.

I actually only wanted to integrate with .NET to do some unit testing but I
realised that J has it's own unit testing package so I'm gonna leave the
.NET integration alone for the moment.

On 12 July 2010 04:16, Alex Rufon <[email protected]> wrote:

> I think Bill is right.
>
> If you would look closely at both tutorials, the initialize() private
> function loads a "compiled" script  of the standard library and a lot of
> other definitions. If you skip this part, a value error would occur because
> "verb" and "defined" are not defined.  ;)
>
>
> -----Original Message-----
> From: [email protected] [mailto:
> [email protected]] On Behalf Of bill lam
> Sent: Monday, July 12, 2010 8:29 AM
> To: [email protected]
> Subject: Re: [Jprogramming] Getting J to work with .NET
>
> Did verb and define actually defined in your profile (if any)?
>
> what if replacing that line by
>  centigrade =: 3 : 0
>
> Пнд, 12 Июл 2010, Mark Needham писал(а):
> > It's working for me with some statements in the ijs file but not when
> > I define a verb for some reason:
> >
> > ijs file
> >
> > result =: 2 + 2
> >
> > square =: *:
> >
> > centigrade =: verb define
> > t1 =. y - 32
> > t2 =. t1 * 5
> > t3 =. t2 % 9
> > )
> >
> > Then I've got this code:
> >
> >             var cSharpSession = new CSharpSession();
> >
> >
>  cSharpSession.Load("C:/Playbox/JForTheWin/WillJWork/bin/Debug/script.ijs");
> >             cSharpSession.Eval("mark =: centigrade 5");
> >             var csharpResult = cSharpSession.Variable("mark");
> >             Console.Write(csharpResult);
> >
> > where CSharpSession is the one from the other tutorial.
> >
> > It blows up on trying to load the script with a 'value error' but it
> > seems to me that the definition is correct? Is there something else I
> need to do?
> >
> > Cheers, Mark
> >
> >
> > On 9 July 2010 14:12, Alex Rufon <[email protected]> wrote:
> >
> > [---=| TOFU protection by t-prot: 120 lines snipped |=---]
>
> --
> regards,
> ====================================================
> GPG key 1024D/4434BAB3 2008-08-24
> gpg --keyserver subkeys.pgp.net --recv-keys 4434BAB3
> ----------------------------------------------------------------------
> For information about J forums see http://www.jsoftware.com/forums.htm
> ----------------------------------------------------------------------
> For information about J forums see http://www.jsoftware.com/forums.htm
>
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to