Krzysztof Wende
Krzysztof Wende
Right now divide by 0 on Ints returns 0. Divide by 0 on floats returns NaN. ANY MATH OPERATIONS ON NAN THROW ERROR. It'd be nice to find a safe...
Follow up for #163 You can now see Examples section in Elchemy-live (http://elchemy-live.herokuapp.com/new) It'd be nice to think of some good examples with decent comments to make people more familiar...
Along with typetests which verify the spec of a function we want a property test that checks whether used FFI call is pure and total. For example: ```elm myDivision :...
Back when Elchemy started a year ago producing an output as a binary was an obvious choice because of readability. Right now, however, with an Elixir formatter being built-in and...
``` let x _ = x in ``` Works ``` let x = 0 |> andThen \a -> x in ``` Doesn't
Right now the docests will work only if 1. They are in a single new line 2. They have a == equation at the top While it covers about 70%...
Packages with examples containing Html code will error out for no Html modules
Add: ## Example: ```bash elmchemy new my_project mix test # 0 ``` -> ```elixir my_project/ ├── elm-package.json ├── mix.exs ├── elm ├── Hello.elm ├── lib ├── Hello.ex ├── tests ├──...
elchemy bump patch | minor | major ``` -1. Run elm-test and make sure they're passing 0. Make sure git is empty 1. Change version in mix.exs 2. Change version...
There is a lot of cool snippets that could help us develop in Elixir with Atom. I've already made few of them, but I'm sure there are some patterns I...