A statically typed lisp, without a GC, for real-time applications.
Go to file
2018-03-12 12:04:23 +01:00
app Support for a "~/.carp/profile.carp" file that is auto-loaded after Core, if it exists. 2018-03-11 14:15:40 +01:00
bench Optimized 'Array.subarray', 3.90575s -> 25.046ms for taking the first half of an array of 10k ints. 2018-03-11 14:30:38 +01:00
core More permissive signature for 'Array.index-of'. 2018-03-12 12:04:23 +01:00
docs Todo done. 2018-03-11 14:32:45 +01:00
emacs Improved emacs mode. 2018-03-08 07:15:07 +01:00
examples Globals are sorted in dependency order. 2018-03-10 17:02:57 +01:00
headerparse Don't kebab case macros. 2018-03-11 20:17:26 +01:00
img square version of logo without text 2016-07-14 16:07:54 +02:00
out REPLACE WITH HASKELL VERSION 2017-06-26 11:15:03 +02:00
src Started working on a 'source-dir' special command. 2018-03-11 20:17:40 +01:00
test Optimized Array.aupdate from 5.93691s to 2.75493s for array of 1000000 ints. 2018-03-11 13:56:07 +01:00
.gitignore Ignore examples/out (generated by repl in emacs) 2018-03-08 18:46:16 +01:00
benchmarks.sh A script for running all benchmarks. 2018-02-06 09:02:46 +01:00
CarpHask.cabal Remove deps. 2018-02-27 16:00:55 +01:00
LICENSE new license 2016-08-23 15:43:10 +02:00
lines_of_code.sh lines_of_code.sh 2018-02-08 08:56:33 +01:00
LUA_LICENSE all: add lua license 2018-03-02 14:14:19 +01:00
README.md all: add lua license 2018-03-02 14:14:19 +01:00
release.sh Ensure intermediate directory if not exists. 2018-02-19 15:10:34 +01:00
run_carp_tests.sh core: remove interdependencies between modules 2018-02-27 15:10:42 +01:00
Setup.hs REPLACE WITH HASKELL VERSION 2017-06-26 11:15:03 +02:00
stack.yaml Intero 0.1.24 -> 0.1.28. 2018-03-09 07:29:57 +01: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!

Update (June 26, 2017): The total rewrite is now live; if you want to look at the old version, it's under the branch named "c" in this repository.

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 Small Example

(use IO)
(use Int)
(use String)

(defn main []
  (do (println "~ The number guessing game ~")
      (print "Please enter a number between 1 - 99: ")
      (let [play true
            answer (random-between 1 100)]
        (while play
          (let [guess (get-line)
                num (from-string &guess)]
            (if (= &guess "q\n")
              (do
                (println "Good bye...")
                (set! play false))
              (do
                (cond (< num answer) (println "Too low.")
                      (> num answer) (println "Too high.")
                      (println "Correct!"))
                (print "Please guess again: "))))))))

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 - 2017 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.