13 breaking releases

new 0.16.0 Oct 26, 2024
0.14.0 Jun 24, 2024
0.11.0 Feb 10, 2024
0.9.0 Nov 18, 2023
0.5.0 Feb 22, 2023

#75 in Programming languages

Download history 9/week @ 2024-07-12 9/week @ 2024-07-19 24/week @ 2024-07-26 11/week @ 2024-08-02 5/week @ 2024-08-09 123/week @ 2024-08-16 61/week @ 2024-08-23 26/week @ 2024-08-30 15/week @ 2024-09-06 18/week @ 2024-09-13 58/week @ 2024-09-20 31/week @ 2024-09-27 6/week @ 2024-10-04 7/week @ 2024-10-11 12/week @ 2024-10-18 128/week @ 2024-10-25

155 downloads per month
Used in 14 crates

Apache-2.0

345KB
5.5K SLoC

Tan Language

Tan is a language for Humans and Machines.

Example

Here is an example of Tan:

; Compute the fibonacci function.

(let fib (Func x
    (if (< x 3)
        1
        (else (+ (fib (- x 1)) (fib (- x 2))))
    )
))

(echo (fib 10))

Check out more Tan examples to get a feeling of Tan.

Status

This is an experimental project, not intended for production use. However, the project is under active development.

Contributing

Pull requests, issues, and comments are welcome! Make sure to add tests for new features and bug fixes.

License

This work is licensed under the Apache-2.0 License with LLVM Exceptions. See LICENSE.txt or https://spdx.org/licenses/LLVM-exception.html for details.

Copyright © 2022 Georgios Moschovitis.

Dependencies

~1–1.4MB
~26K SLoC