Skip to content
A statically typed lisp, without a GC, for real-time applications.
Haskell C Emacs Lisp Shell C++ Nix PowerShell
Branch: master
Clone or download

Latest commit

eriksvedang Merge pull request #862 from Vertmo/fix-nesteddefn-eval
Generalization of the evaluation of static defn
Latest commit 753deaf Jun 19, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github/workflows ci: enable stack on osx May 13, 2020
app Merge pull request #856 from jacereda/c99fixes Jun 8, 2020
bench core: make subarry/substring slice Feb 11, 2020
core Merge pull request #888 from hellerve/veit/phantoms Jun 19, 2020
docs Merge pull request #888 from hellerve/veit/phantoms Jun 19, 2020
emacs Improved emacs mode. Mar 8, 2018
examples Fixed lambda capture in presence of let bindings Jun 15, 2020
headerparse Switch option parsing to optparse-applicative, remove tcc dependency. May 21, 2020
img Remove two unused images. Mar 14, 2018
resources MP3 works! Mar 23, 2018
src Merge pull request #862 from Vertmo/fix-nesteddefn-eval Jun 19, 2020
test-for-errors core: add phantom Jun 14, 2020
test Merge pull request #888 from hellerve/veit/phantoms Jun 19, 2020
.build.yml Adds a FreeBSD 12.x CI target using builds.sr.ht May 13, 2020
.clang-format core: do not have short functions on single lines Oct 30, 2019
.gitignore Add tags to .gitignore May 23, 2020
.travis.yml Travis: Switching to older infrastructure to work around github.com/t… May 20, 2018
CarpHask.cabal Move interface registration functions into Interfaces.hs Jun 10, 2020
LICENSE new license Aug 23, 2016
LUA_LICENSE lau license: fix referenced file Jan 14, 2019
README.md Adds Windows and MacOS CI badge to readme May 18, 2020
Setup.hs REPLACE WITH HASKELL VERSION Jun 26, 2017
benchmarks.sh Makes test bash script running on MSYS/Git Bash May 11, 2020
build.sh Make sure we return success when clang-format is absent. Jun 12, 2020
carp.sh Switch option parsing to optparse-applicative, remove tcc dependency. May 21, 2020
default.nix Switch option parsing to optparse-applicative, remove tcc dependency. May 21, 2020
flamegraph.sh parent 9ba6a26 May 12, 2020
haskell-flamegraph.sh Flamegraph for the haskell side. May 12, 2020
lines_of_code.sh loc: add headerparse Oct 4, 2018
release.sh Makes test bash script running on MSYS/Git Bash May 11, 2020
run_carp_tests.ps1 Make it possible to turn off loading of profile.carp, useful for Apr 30, 2020
run_carp_tests.sh Fixed the issue with nested capture and nested lambdas May 28, 2020
scratch Add zero for other StdInt types Feb 21, 2020
stack.yaml Try to fix Windows build failure switching resolver. May 22, 2020

README.md

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.

You can’t perform that action at this time.