jlll

JLLL - Java Lisp Like Language

License

License

GroupId

GroupId

ru.ydn
ArtifactId

ArtifactId

jlll
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

jlll
JLLL - Java Lisp Like Language
Project URL

Project URL

https://github.com/PhantomYdn/jlll
Source Code Management

Source Code Management

https://github.com/PhantomYdn/jlll

Download jlll

How to add to project

<!-- https://jarcasting.com/artifacts/ru.ydn/jlll/ -->
<dependency>
    <groupId>ru.ydn</groupId>
    <artifactId>jlll</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/ru.ydn/jlll/
implementation 'ru.ydn:jlll:1.0'
// https://jarcasting.com/artifacts/ru.ydn/jlll/
implementation ("ru.ydn:jlll:1.0")
'ru.ydn:jlll:jar:1.0'
<dependency org="ru.ydn" name="jlll" rev="1.0">
  <artifact name="jlll" type="jar" />
</dependency>
@Grapes(
@Grab(group='ru.ydn', module='jlll', version='1.0')
)
libraryDependencies += "ru.ydn" % "jlll" % "1.0"
[ru.ydn/jlll "1.0"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.4

Project Modules

There are no modules declared in this project.

Build Status Coverage Status

jlll

JLLL - Java Lisp Like Language. Lightweight and embeddable java library to bring some lisp flavour into your projects.

Installation

Add following snippet into pom.xml

<dependency>
	<groupId>ru.ydn</groupId>
	<artifactId>jlll</artifactId>
	<version>1.0</version>
</dependency>

Examples

(+ 2 2)
4

(cons 'a 'b)
(a . b)

(append '(a b) '(c d))
(a b c d)

(define (inc x) (+ x 1))
(inc 2)
3

(invoke-static 'java.lang.Math 'cos 0.0)
1.0

(invoke "hello" 'length)
5

Versions

Version
1.0