Skip to content
This repository has been archived by the owner on Jul 9, 2022. It is now read-only.

jmjoy/c-style

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

c-style

A library bringing some c-style syntax to clojure.

Install

With Leiningen/Boot:

[c-style "0.2.0"]

Usage

(require '[c-style.core :as c])

;; The `proc` marco help you defined variables like c-family language.
(c/proc (:let a 1)
        (:let [b & _] [2 3 4])
        (+ a b)) ;; => 3

License

Copyright © 2018 JM_Joy

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.