Igor Ferreira

Results 47 comments of Igor Ferreira

> Not yet indeed. If you can contribute to this feature I'll be happy to help. I love Julia and it's my dream contribute to it, but I haven't read...

my suggestion: ```julia route("main") do return [ route("1") do end, route("2") do end ] end ``` http://localhost:8000/main/1 http://localhost:8000/main/2

I would like this to be allowed: ```rust let n = 4; match n { _ @ 2..=7 => println!("between 2 and 7"), _ => println!("not between 2 and 7")...

> 1] > > > one doesn't need to invent a unique name for a test. > > I agree. So something like `test() {}` would be good for that....

> Please explain your use case in more detail. @Sija it's very common to have two or more html elements that use one or more same sets of stylization, instead...

> I get your point, sth like "global" styles? @Sija yes

I suggest change the current ephemeral type indicator (^) to another like # or whatever motivation: use of ^ to exponentiation languages and others that use ^ as exponentiation: Haskell,...

> Extend the standard library with BigDecimal and BigInteger. I have started to working on this, and I would like to submit this as a pull request soon. BIgDecimal is...

> @cindRoberta BigInteger and BigDecimal are arbitrary precision integers, so they can be as big as you want as long as you have the memory to spare. @ergl it looks...

```pony a |> f // equivalent to f(a) ``` ```pony b |2> f(a) // or b |1> f(a) if starting at 0 // equivalent to f(a, b) ``` ```pony b...