Cesar Gimenes

Results 50 comments of Cesar Gimenes

Reference "An error monad in Clojure": https://brehaut.net/blog/2011/error_monads

I was thinking about this and I believe I do not like the dot notation. What if we do this: ``` (let test (join " " (array("Testing", "string", "Join"))) (print...

I just do not like the notation `value.doSomething(...)` (dot function) My opinion is that adding an internal function is better. Maybe I'm just too focused on building a really simple...

today to make an array we need to do: `(array ("a" "b"))` an empty array looks like this: `(array ())` I propose to remove the word "array" and use the...

About lists, if the first element is not a function or lambda we can assume that it is just a list. Example: `((1 4 7) (2 5 8) (3 6...

@trumae I do not know if I understood correctly, but to declare an array of functions just put the word "array" at the beginning.

I added the DisableFlags parameter, it is still in tests but it is already in the master.

Hello @fulldump! I think that the correct link is https://github.com/fulldump/goconfig :D I like your builtin `-config` parameter, I've already been asked to add something similar

I think we're almost there, we just need more test coverage.

Keeping the list in gofn is an easy way to access the container ID without having to change the signature of the functions or change the current code too much....