All Versions
42
Latest Version
Avg Release Cycle
33 days
Latest Release
2230 days ago

Changelog History
Page 5

  • v0.2.0 Changes

    April 12, 2015

    โž• Added

    • Pipe operator
    • String interpolation
    • โž• Adding more functions to the Kernel module
    • Fully implemented Tuple module
    • Fully implemented Atom module
    • Fully implemented Range module

    ๐Ÿ”„ Changed

    • ๐Ÿ‘€ Now checking to see if a function is a Kernel function and prepending Kernel to it
    • Now turning Atoms into an Atom javascript object instead of a Symbol
    • Now turning tuples into a Tuple javascript object
    • Can now call properties and zero parameter functions correctly
    • case, cond, and if are now turned into if statements wrapped in function closures
    • Anonymous functions are now turned into anonymous functions in javascript insteed of arrow functions
  • v0.1.0 Changes

    April 04, 2015

    โž• Added

    • From standard library implemented:

    • Enum.map

    • Kernel.tl

    • Kernel.hd

    • Logger

    • Implemented language features:

    • All primitives except bitstrings

    • defmodule

    • import, alias, and require

    • case, cond, if

    • def, defp

    • defstruct, defexception

    • raise

    • multiple arity functions

    • basic binary operations

    • for without into