Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gizmo385/learningclojure
Different experiments with Clojure
https://github.com/gizmo385/learningclojure
clojure experiement learning
Last synced: 8 days ago
JSON representation
Different experiments with Clojure
- Host: GitHub
- URL: https://github.com/gizmo385/learningclojure
- Owner: gizmo385
- License: mit
- Created: 2014-10-24T09:04:12.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-22T00:57:48.000Z (about 8 years ago)
- Last Synced: 2023-05-22T15:55:12.938Z (over 1 year ago)
- Topics: clojure, experiement, learning
- Language: Clojure
- Size: 96.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Clojure Experiments
===============Various experiments with Clojure that may or may not get finished. These projects may or may not get
finished and there is no assurance that they will be finished in any reasonable time frame.The projects currently included in the master branch are as follows:
* [automata](./automata): This is an experiment involving the simulation of finite state automata.
* [chat-app](./chat-app): An attempt at writing a distributed chat application. This operates on
a similar message protocol that [this project](http://github.com/gizmo385/distributed-chat)
operates on.* [graphs](./graphs): Experiments in how to represent a semi-complex data structure in Clojure.
Several different versions, included a typed version, are available in this repo.* [n-bodies](./n-bodies): Attempting to create an n-body simulation in a stateless system. The logic
behind this system is a port of [this project](https://github.com/gizmo385/n-bodies).* [ttt-server](./ttt-server): Experiments in how a REST API might be defined in a language like
Clojure.