Emil Soman
Emil Soman
I was checking the [demo page for Darkstrap](http://danneu.com/darkstrap/darkstrap.html) . Noticed that the background of the select dropdown appears bright. This happens only in Chrome. Any clue ? Tried to take...
Currently it looks like headers can only have a name and a value. When using custom headers in requests it may be a good idea to document the intent using...
The following should type check successfully: ```rust fn a : Loop(Int | String) do if true do b() else 123 end end fn b : Loop(Int | String) do if...
true -> :true false -> :false PS: Implement this after we add custom types so Bool can be defined as :true | :false
To avoid clashes, we should prefix all modules compiled from fika code with "fika." just like "Elixir.". This should be transparent to the user, ie, these modules when used in...
Syntax: ``` type Result(a, b) = {:ok, a} | {:error, b} ```
This is because we depend on `to_string` to print types and that removes `:` from atoms. One easy solution could be - parse atom types as strings and store them...
I think we should take out the scope map outside of env and create new scope for inner blocks.