A statically typed lisp, without a GC, for real-time applications.
Go to file
jacereda 244df27942
Unicode fixes (#994)
* Some compilers (tcc) will complain switching on const values.

* Fix unicode example when compiling with -std=c99.
2020-11-22 06:45:26 +01:00
.github Skips publishing docs if the branch is not master (#985) 2020-11-20 15:11:35 +01:00
app Add support for cross-compilation. 2020-10-10 20:01:18 +02:00
bench Moves scripts in scripts folder 2020-11-09 10:51:11 +00:00
core Unicode fixes (#994) 2020-11-22 06:45:26 +01:00
docs Adding more documentation around C Interop (#984) 2020-11-21 21:28:42 +01:00
examples Updates mutual recursion example (#983) 2020-11-20 15:12:49 +01:00
headerparse Enhance type reflection; get types of values, get kinds 2020-10-02 17:48:58 -04:00
resources refactor: Move logos into resorces directory 2020-11-20 07:52:59 +01:00
scripts fix: Bring back the test suite 2020-11-19 20:36:54 +01:00
src Unicode fixes (#994) 2020-11-22 06:45:26 +01:00
test Merge pull request #973 from jacereda/fix-suffix 2020-11-17 23:59:46 +01: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 Fix nixpkgs build. 2020-11-14 15:28:17 +01:00
.clang-format core: do not have short functions on single lines 2019-10-30 11:07:32 +01:00
.gitignore chore: Remove SDL docs 2020-11-19 21:43:02 +01:00
.travis.yml Fix nixpkgs build. 2020-11-14 15:28:17 +01:00
CarpHask.cabal Enhance type reflection; get types of values, get kinds 2020-10-02 17:48:58 -04:00
default.nix Remove shell.nix. 2020-11-18 22:23:24 +01:00
LICENSE new license 2016-08-23 15:43:10 +02:00
LUA_LICENSE lau license: fix referenced file 2019-01-14 12:08:36 +01:00
README.md docs: Move things around in readme 2020-11-20 08:00:41 +01: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

Logo

Linux CI MacOS CI Windows CI

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.4 of the language is out!

About

Carp is a 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

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

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.

For a slightly longer example, check out Reptile - a Snake clone in Carp.

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.