Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 649 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 649 Bytes

Funky.jl

created by Austin Poor

A julia package for working with function expressions.

Quick-Start

julia> e = :((a::Int, b::Float64 = 2. ; k::Int = 1) -> a + b + k)
:((a::Int, b::Float64 = 2.0; k::Int = 1)->begin
          #= REPL[17]:1 =#
          a + b + k
      end)

julia> # TODO: Explain how this package works

Background

I started this package when working on another Julia package, QuickAPI.jl and found myself looking for some of this functionality. Rather than add it as a sub-module in QuickAPI, I figured it would be better to write it as a separate package.