A statically typed lisp, without a GC, for real-time applications.
Go to file
2018-11-14 14:21:12 +01:00
app Can make error reporting when using --check print long or short file paths. 2018-09-21 13:57:39 +02:00
bench bench: add a few map and set benchmarks 2018-08-25 11:19:04 -07:00
core Deftype generates 'update' functions that expect refs to functions too. 2018-11-14 14:21:12 +01:00
docs Deftype generates 'update' functions that expect refs to functions too. 2018-11-14 14:21:12 +01:00
emacs Improved emacs mode. 2018-03-08 07:15:07 +01:00
examples Deftype generates 'update' functions that expect refs to functions too. 2018-11-14 14:21:12 +01:00
headerparse headerparse: remove unnecessary import of Debug.Trace 2018-08-17 15:26:51 +02:00
img Remove two unused images. 2018-03-14 11:00:12 +01:00
out REPLACE WITH HASKELL VERSION 2017-06-26 11:15:03 +02:00
resources MP3 works! 2018-03-23 21:42:24 +01:00
src Deftype generates 'update' functions that expect refs to functions too. 2018-11-14 14:21:12 +01:00
test Deftype generates 'update' functions that expect refs to functions too. 2018-11-14 14:21:12 +01:00
test-for-errors One more test for error message. 2018-09-21 15:17:12 +02:00
.gitignore Ignore examples/out (generated by repl in emacs) 2018-03-08 18:46:16 +01:00
.travis.yml Travis: Switching to older infrastructure to work around github.com/travis-ci/travis-ci/issues/9033 2018-05-20 12:50:10 +10:00
benchmarks.sh A script for running all benchmarks. 2018-02-06 09:02:46 +01:00
CarpHask.cabal compiler: add suport for markdown in docstrings 2018-10-22 15:58:57 -04:00
LICENSE new license 2016-08-23 15:43:10 +02:00
lines_of_code.sh loc: add headerparse 2018-10-04 15:20:01 +02:00
LUA_LICENSE all: add lua license 2018-03-02 14:14:19 +01:00
README.md More correct description. 2018-09-19 16:01:41 +02:00
release.sh Ensure intermediate directory if not exists. 2018-02-19 15:10:34 +01:00
run_carp_tests.sh Make lambdas carry a SymPath instead of a String to their lambda function. 2018-09-25 15:59:55 +02:00
Setup.hs REPLACE WITH HASKELL VERSION 2017-06-26 11:15:03 +02:00
stack.yaml Switched to resolver 'LTS 11.12'. 2018-06-05 10:16:26 +02:00

Carp

Join the chat at https://gitter.im/eriksvedang/Carp

Logo

WARNING! This is a research project and a lot of information here might become outdated and misleading without any explanation. Don't use it for anything important just yet!

Update (June 12, 2018): We're currently working towards version 0.3.0 of the language. The goal of this version is to be a stable but somewhat limited version of the language (lacking union types).

A conference talk about Carp was recorded and the video can be seen here.

About

Carp is a small programming language designed to work well for interactive and performance sensitive use cases like games, sound synthesis and visualizations.

The key features of Carp are the following:

  • Automatic and deterministic memory management (no garbage collector or VM)
  • Inferred static types for great speed and reliability
  • Ownership tracking enables a functional programming style while still using mutation of cache-friendly data structures under the hood
  • No hidden performance penalties allocation and copying are explicit
  • Straightforward integration with existing C code

Learn more

The Carp REPL has built-in documentation, run (help) to access it!

A Very Small Example

(load-and-use SDL)

(defn tick [state]
  (+ state 10))

(defn draw [app rend state]
  (bg rend &(rgb (/ @state 2) (/ @state 3) (/ @state 4))))

(defn main []
  (let [app (SDLApp.create "The Minimalistic Color Generator" 400 300)
        state 0]
    (SDLApp.run-with-callbacks &app SDLApp.quit-on-esc tick draw state)))

To build this example, save it to a file called 'example.carp' and load it with (load "example.carp"), then execute (build) to build an executable, and (run) to start.

Language Designer & Lead Developer

Erik Svedäng (@e_svedang)

Core Contributor

Veit Heller (@hellerve)

Contributors

  • Markus Gustavsson
  • Fyodor Shchukin
  • Anes Lihovac
  • Chris Hall
  • Tom Smeding
  • Dan Connolly
  • Reini Urban
  • Jonas Granquist

Are you missing from the contributors list? Please send a pull request!

License

Copyright 2016 - 2018 Erik Svedäng

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

The regular expression implementation as found in src/carp_regex.h are Copyright (C) 1994-2017 Lua.org, PUC-Rio under the terms of the MIT license. Details can be found in the License file LUA_LICENSE.