Mathieu Rochette

Results 120 comments of Mathieu Rochette

from a user point of vue it should not be _very_ different if it's done with methods ` /method myrecord.` or functions ` myrecord function.` the only issue I have...

I don't think records are supposed to have default values, records are independent, they are not object constructors

I would suggest using http://mikemcl.github.io/bignumber.js/ here

well I was suggesting because it also supports floating point numbers. that would mean easier implementation of interaction between integer and float, they would of the same type. but I...

ok, I take back what I said. I also did some performance tests between javascript numbers and `BigNumber`s. the `BigNumber` lib is also much slower ( ~600 times slower in...

I was thinking about that too lately, I think it would be ease to build a module system using #18 . a module would just put a record on its...

it's some kind of data structure, but not yet specified : https://github.com/TazeTSchnitzel/Firth/issues/18

the `export` function could be nice, with only `def.` module would likely export to much stuff without realizing it

Do you have a testing framework in mind? [Mocha](http://mochajs.org/#synchronous-code) could be appropriate I guess

Hi, I'm not very well versed on the subject but what do you think about this :+1: ```sql create schema private; create table private.person ( name text not null );...