Re: [Felix-language] javascript compat

2012-05-26 Thread Ed Keith
From: Jeff Schultz >To: felix sf >Sent: Saturday, May 26, 2012 8:37 PM >Subject: Re: [Felix-language] javascript compat > >On Sun, May 27, 2012 at 04:49:08AM +1000, john skaller wrote: >> Just running through w3schools javascript tut. In JS >> >>     &qu

Re: [Felix-language] javascript compat

2012-05-26 Thread Jeff Schultz
On Sun, May 27, 2012 at 04:49:08AM +1000, john skaller wrote: > Just running through w3schools javascript tut. In JS > > "x" + 2 == "x2" > > in Felix, the integer is converted to char 2, then to a one character string > and > concatenated, so > > "x" + 10 > > is the same as > >

[Felix-language] javascript compat

2012-05-26 Thread john skaller
Just running through w3schools javascript tut. In JS "x" + 2 == "x2" in Felix, the integer is converted to char 2, then to a one character string and concatenated, so "x" + 10 is the same as "x\n" Thinking of changing it. Comments? BTW: A static object in Felix is a