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 record of methods.
Well actually a record of anything. The method cannot access
each other or components of the record (only the private scope
of the constructor function). Unless you create the record manually
in a function that contains the record as a variable  :)

Now, a *dynamic* object would just be a dictionary.
Python for free anyone?

--
john skaller
skal...@users.sourceforge.net
http://felix-lang.org




------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to