Skip to content
A statically typed lisp, without a GC, for real-time applications.
Haskell C Emacs Lisp Other
Branch: master
Clone or download
eriksvedang Merge pull request #662 from scolsen/memory-typo
Fix small typo in docs/Memory.md
Latest commit 9dcbace Feb 5, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
app Remove trailing slash in out dir, messes up on Windows. Dec 18, 2019
bench Fix map and structs benchmarks. Sep 20, 2019
core Merge pull request #656 from hellerve/master Jan 30, 2020
docs Fix small typo in docs/Memory.md Feb 4, 2020
emacs Improved emacs mode. Mar 8, 2018
examples Fix all nth usage Oct 31, 2019
headerparse Path module. Oct 9, 2019
img Remove two unused images. Mar 14, 2018
out dirs: readded keep dir Dec 12, 2017
resources MP3 works! Mar 23, 2018
src load: reset current work directory correctly Feb 3, 2020
test-for-errors commands: check char-at Jan 14, 2020
test Merge pull request #653 from hellerve/veit/from-string Jan 29, 2020
.clang-format core: do not have short functions on single lines Oct 30, 2019
.gitignore Preserve includes order in generated output. Oct 2, 2019
.travis.yml Travis: Switching to older infrastructure to work around github.com/t… May 20, 2018
CarpHask.cabal Path module. Oct 9, 2019
LICENSE new license Aug 23, 2016
LUA_LICENSE lau license: fix referenced file Jan 14, 2019
README.md README > Update the example for macOS Catalina Jan 15, 2020
Setup.hs REPLACE WITH HASKELL VERSION Jun 26, 2017
benchmarks.sh Make scripts nix-aware. Sep 20, 2019
build.sh build: remove redundant || false Oct 30, 2019
carp.sh Switch to cabal run. Sep 20, 2019
default.nix Switch to default compiler. Sep 20, 2019
lines_of_code.sh loc: add headerparse Oct 4, 2018
release.sh Ensure intermediate directory if not exists. Feb 19, 2018
run_carp_tests.sh Added build.sh. Sep 24, 2019
stack.yaml Bump stack resolver. Oct 16, 2019

README.md

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!

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)

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.

You can’t perform that action at this time.