A statically typed lisp, without a GC, for real-time applications.
Go to file
2018-02-04 10:23:36 +01:00
app Changed type of member getter method to always returning a Ref (used to be non-ref for primitive types). 2018-01-26 21:23:29 +01:00
bench bench: add structs benchmark 2018-01-25 17:37:30 +01:00
core core: fix bench and ignore form, because they were buggy 2018-02-01 18:01:45 +01:00
docs Todo:s regarding reference origin tracking. 2018-02-04 09:05:31 +01:00
emacs Messed around a little with inf-carp mode. 2017-12-23 06:09:58 +01:00
examples Merge branch 'master' of https://github.com/carp-lang/Carp 2018-02-04 10:23:36 +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 Better infrastructure for reporting errors from 'concretizeType'. 2018-02-01 18:57:12 +01:00
test Run 'setting-4'. 2018-02-02 12:30:27 +01:00
.gitignore compiler: honor project title 2018-01-29 13:13:41 +01:00
CarpHask.cabal Moved a lot of code out of Obj.hs and into two new modules: Qualify.hs 2018-02-01 17:52:50 +01:00
LICENSE new license 2016-08-23 15:43:10 +02:00
README.md Swapped example / readme. 2017-12-24 05:05:33 +01:00
run_carp_tests.sh FIXED: Fails to find the correct Array.str when calling println* in a do-form. 2018-01-28 05:56:03 +01:00
Setup.hs REPLACE WITH HASKELL VERSION 2017-06-26 11:15:03 +02:00
stack.yaml Todo, intero 0.1.24, run sorting example. 2018-01-15 16:59:48 +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.