Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 838 Bytes

File metadata and controls

42 lines (29 loc) · 838 Bytes

tableflisp

Because desperate times call for desperate functions!

Quick start

Add the following line to your leiningen dependencies:

[tableflisp "0.1.0"]

Require tableflisp in your namespace header:

(ns example.core
  (:use [tableflisp.core]))

Usage

;; Friends don't let friends use the IBM JDK
(when (re-find #"IBM" (System/getProperty "java.vm.name"))
  (<╯°□°>╯︵┻━┻))

;; One processor? What decade is this?!
(when (= 1 (.availableProcessors (Runtime/getRuntime)))
  (<╯°□°>╯︵┻━┻))

;; FFFFFFFUUUUUUUUUUUU...
(try
  (apply str (concat (repeat 7 "F") (repeat "U")))
  (catch OutOfMemoryError e
    (<╯°□°>╯︵┻━┻)))

License

Copyright © 2013 ¯\(°_o)/¯

Distributed under the Eclipse Public License, the same as Clojure.