Skip to content

Latest commit

 

History

History
70 lines (51 loc) · 1.59 KB

README.md

File metadata and controls

70 lines (51 loc) · 1.59 KB

re-find.fx

A JavaFX11 wrapper for re-find.

Requirements

  • JDK11
  • tools.deps

Try it out

clj -Sdeps "{:deps
                   {MageMasher/re-find.fx
                      {:git/url \"https://github.com/MageMasher/re-find.fx\"
                       :sha \"b29bde3519f7632b63eb71415943bf8a7cfa1462\"}}}" \
    -m re-find.fx

Installation

Add the alias below to your project deps.edn or global at ~/.clojure/deps.edn

:re-find.fx
{:extra-deps {MageMasher/re-find.fx
              {:git/url "https://github.com/MageMasher/re-find.fx"
               :sha "b29bde3519f7632b63eb71415943bf8a7cfa1462"}}}

Usage

Run the project directly:

$ clj -A:re-find.fx -m re-find.fx

Add re-find.fx to an existing project by enabling the re-find.fx alias.

$ clj -A:re-find.fx

Run the project's tests (they'll fail until you edit them):

$ clj -A:test:runner

Examples

Same examples as on re-find.it

Bugs

Right now if you provide multiple arguments, only the first argument shows up in the arguments column of the result table. Problem is identified, need to think through the solution.

Example:

Args

1 2 3

Ret

1

Results

|function         | arguments | return value |
|-----------------+-----------+--------------|
|clojure.core/min | 1         | 1            |

Acknowledgements

Thanks Michiel Borkent for creating re-find and re-find.web which is hosted at re-find.it