{"id":16625966,"url":"https://github.com/yurrriq/fregure","last_synced_at":"2026-06-06T15:01:38.983Z","repository":{"id":29971664,"uuid":"33518618","full_name":"yurrriq/fregure","owner":"yurrriq","description":"Experiments in Frege and Clojure integration","archived":false,"fork":false,"pushed_at":"2017-03-16T08:07:55.000Z","size":4,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-11T13:23:11.361Z","etag":null,"topics":["clojure","experiments","frege"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yurrriq.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-07T02:57:01.000Z","updated_at":"2017-03-16T08:04:59.000Z","dependencies_parsed_at":"2022-08-03T12:45:12.080Z","dependency_job_id":null,"html_url":"https://github.com/yurrriq/fregure","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yurrriq/fregure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Ffregure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Ffregure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Ffregure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Ffregure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yurrriq","download_url":"https://codeload.github.com/yurrriq/fregure/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Ffregure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33986901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-06T02:00:07.033Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clojure","experiments","frege"],"created_at":"2024-10-12T04:08:07.096Z","updated_at":"2026-06-06T15:01:38.961Z","avatar_url":"https://github.com/yurrriq.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+STARTUP: showall\n#+OPTIONS: ^:nil H:3 author:t\n#+OPTIONS: creator:nil date:t\n#+OPTIONS: email:nil num:nil\n#+OPTIONS: title:nil toc:nil todo:t\n#+DATE: [2017-03-16 Thu]\n#+AUTHOR: Eric Bailey\n#+EMAIL: eric@ericb.me\n#+LANGUAGE: en\n#+SELECT_TAGS: export\n#+EXCLUDE_TAGS: noexport\n#+CREATOR: Emacs 25.1.1 (Org mode 9.0.5)\n\n* Fregure\n  :PROPERTIES:\n  :CUSTOM_ID: fregure\n  :END:\n/Experiments in Frege and Clojure integration/\n\n[[https://github.com/Frege/frege][Frege]] + [[https://github.com/clojure/clojure][Clojure]] = :heart_eyes:\n\n** Installation\n   :PROPERTIES:\n   :CUSTOM_ID: installation\n   :END:\n#+BEGIN_SRC fish\ngit clone https://github.com/yurrriq/fregure.git\n#+END_SRC\n\n** Usage\n   :PROPERTIES:\n   :CUSTOM_ID: usage\n   :END:\nRun the Frege compiler and then run the Clojure application:\n#+BEGIN_SRC fish\nlein do fregec, run\n#+END_SRC\n#+BEGIN_EXAMPLE\nHello from Clojure!\nHello from Frege!\n#+END_EXAMPLE\n\nYou can also package up all the Clojure and Frege code and their runtimes:\n#+BEGIN_SRC fish\nlein uberjar\n#+END_SRC\n#+BEGIN_EXAMPLE\ncalling: javac -cp ...\nCompiling fregure.core\nCreated /path/to/project/target/uberjar+uberjar/fregure-0.1.0-SNAPSHOT.jar\nCreated /path/to/project/target/uberjar/fregure-0.1.0-SNAPSHOT-standalone.jar\n#+END_EXAMPLE\n\nThat produces a JAR file which you can run:\n#+BEGIN_SRC fish\njava -jar target/fregure-0.1.0-SNAPSHOT-standalone.jar\n#+END_SRC\n#+BEGIN_EXAMPLE\nHello from Clojure!\nHello from Frege!\n#+END_EXAMPLE\n\n** Links\n   :PROPERTIES:\n   :CUSTOM_ID: links\n   :END:\n- [[https://github.com/Frege/frege#what-is-frege-][What is Frege?]]\n- [[https://github.com/Frege/frege/wiki/Differences-between-Frege-and-Haskell][Difference between Frege and Haskell]]\n- [[http://seancorfield.github.io/blog/2015/02/13/frege-and-clojure/][Frege (and Clojure)]] blog post\n- [[https://github.com/seancorfield/lein-fregec][lein-fregec]]: a Leiningen to compile Frege code\n- [[http://try.frege-lang.org][Online REPL]]\n\n** How to Install the REPL\n   :PROPERTIES:\n   :CUSTOM_ID: how-to-install-the-repl\n   :END:\n#+BEGIN_SRC fish\n# First install frege-interpreter...\ngit clone https://github.com/Frege/frege-interpreter.git\npushd frege-interpreter\nmvn install\npopd\n\n# ... and frege-repl.\ngit clone https://github.com/Frege/frege-repl.git; and cd frege-repl\nmvn install\n\n# Then make symlinks.\n\n# Frege REPL\nln -s (pwd)/frege-repl-core/target/frepl/bin/frepl /usr/local/bin/frepl\n\n# Graphic REPL (standalone REPL with basic GUI)\nln -s (pwd)/frege-repl-core/target/frepl/bin/frepl /usr/local/bin/frepl\n\n# JLine-enabled REPL (think rlwrap)\nln -s (pwd)/frege-repl-core/target/frepl/bin/frepl /usr/local/bin/frepl\n#+END_SRC\n\n** License\n   :PROPERTIES:\n   :CUSTOM_ID: license\n   :END:\nThis is [[http://unlicense.org][free and unencumbered software]] released into the [[http://stpeter.im/writings/essays/publicdomain.html][public domain]].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurrriq%2Ffregure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyurrriq%2Ffregure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurrriq%2Ffregure/lists"}