A statically typed lisp, without a GC, for real-time applications.
Go to file
2020-10-15 13:14:31 +02:00
.github/workflows Move env command before cache 2020-09-25 10:39:15 +00:00
app Implement load-stack. 2020-06-28 19:53:43 +02:00
bench core: make subarry/substring slice 2020-02-11 09:09:30 +01:00
core core: fix SDL for newer versions 2020-10-15 13:14:31 +02:00
docs Update 2020-10-02 18:03:34 -04:00
emacs Improved emacs mode. 2018-03-08 07:15:07 +01:00
examples Fixed lambda capture in presence of let bindings 2020-06-15 21:44:11 +02:00
headerparse Enhance type reflection; get types of values, get kinds 2020-10-02 17:48:58 -04:00
img Remove two unused images. 2018-03-14 11:00:12 +01:00
resources MP3 works! 2018-03-23 21:42:24 +01:00
src Merge pull request #939 from scolsen/reify 2020-10-06 19:54:47 +02:00
test Merge pull request #921 from hellerve/veit/doto 2020-08-26 20:58:12 +02:00
test-for-errors Add a valid use of a private binding to private-binding test 2020-06-19 15:01:27 -04:00
.build.yml Adds a FreeBSD 12.x CI target using builds.sr.ht 2020-05-13 20:17:24 +02:00
.clang-format core: do not have short functions on single lines 2019-10-30 11:07:32 +01:00
.gitignore Add tags to .gitignore 2020-05-23 13:00:15 -04: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 Makes test bash script running on MSYS/Git Bash 2020-05-11 12:40:31 +01:00
build.sh Make sure we return success when clang-format is absent. 2020-06-12 19:55:00 +02:00
carp.sh Switch option parsing to optparse-applicative, remove tcc dependency. 2020-05-21 20:06:07 +02:00
CarpHask.cabal Enhance type reflection; get types of values, get kinds 2020-10-02 17:48:58 -04:00
default.nix Switch option parsing to optparse-applicative, remove tcc dependency. 2020-05-21 20:06:07 +02:00
flamegraph.sh parent 9ba6a26ff1 2020-05-12 19:45:23 +02:00
haskell-flamegraph.sh Flamegraph for the haskell side. 2020-05-13 00:21:31 +02: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 lau license: fix referenced file 2019-01-14 12:08:36 +01:00
README.md Adds Windows and MacOS CI badge to readme 2020-05-18 17:53:33 +01:00
release.sh Remove a bunch of code. 2020-09-21 21:51:59 +02:00
run_carp_tests.ps1 Make it possible to turn off loading of profile.carp, useful for 2020-04-30 15:01:30 +02:00
run_carp_tests.sh Fixed the issue with nested capture and nested lambdas 2020-05-28 20:05:27 +02:00
Setup.hs REPLACE WITH HASKELL VERSION 2017-06-26 11:15:03 +02:00
stack.yaml Try to fix Windows build failure switching resolver. 2020-05-23 00:29:44 +02:00

Carp

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

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!

Version 0.3.0 of the language is out!

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. The external dependencies are SDL2 and pkg-config. On macOS Catalina libiconv is also required.

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
  • Joel Kaasinen (@opqdonut)
  • Eric Shimizu Karbstein (@GrayJack)
  • Jorge Acereda (@jacereda)
  • Scott Olsen (@scolsen)
  • Tim Dévé (@timdeve)

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

License

Copyright 2016 - 2020 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.