Camilo

Results 103 comments of Camilo

Based on the proof on concept. This is the proposed algorithm for resolving imports. - First it resolves the import using the traditional way of the path based on _main.wren_....

hello I think this could be useful. the following project used optional prefixes. https://github.com/matthewcheok/POP-MCAnimate/tree/master/POP%2BMCAnimate/Shorthand it defines a flag before importing the code. all the properties and methods are prefixed by...

I successfully used InnoDB and utf8mb4 for saving emojis. Check this project https://github.com/NinjasCL/voxgram Also keep in mind that emojis needs `mb_` functions in php for string manipulation. https://github.com/NinjasCL/voxgram/blob/master/templates/helpers/utf8.php

It would be awesome to have a Hello Phoenix too. As an example of how to do some basic Elixir/Phoenix coding with Caramel :)

Maybe some examples of OOP OCaml Code and how that could be implemented using Caramel

I personally struggle a little bit with the word `fallthrough` since it has many double letters and gh position. How about `pass`?

I like the idea of using `|>` to indicate falltrought. My preference would be using it at the right position since using if before can be confused with "greater than"....

Other languages like Elixir have separate simple case conditions from pattern matched ones https://elixir-lang.org/getting-started/case-cond-and-if.html > case is useful when you need to match against different values. However, in many circumstances,...

Some ideas. Maybe two separate statements can be `is` and `match`. promoting the existing keyword `is` to be part of an `if`. - `if is` would be similar to C...

> Syntax: I prefer keywords to | since Wren mostly uses words rather than symbols outside of expressions. Agree > "fallthrough": the Raku programming language uses "proceed" Nicer alternative >...