9 breaking releases

0.12.0 Apr 13, 2024
0.11.0 Feb 10, 2024
0.10.0 Jan 5, 2024
0.9.0 Nov 18, 2023
0.5.0 Feb 22, 2023

#152 in Programming languages

Download history 22/week @ 2024-01-01 10/week @ 2024-02-05 4/week @ 2024-02-12 58/week @ 2024-02-19 35/week @ 2024-02-26 21/week @ 2024-03-04 36/week @ 2024-03-11 12/week @ 2024-03-18 17/week @ 2024-03-25 51/week @ 2024-04-01 156/week @ 2024-04-08 23/week @ 2024-04-15

248 downloads per month
Used in 12 crates

Apache-2.0

440KB
8K SLoC

Tan Language

Tan is a uniform language for Humans and Machines.

Example

Here is an example of Tan:

; Computes the fibonacci function.
(let fib (Func [x]
    (if (< x 3)
        1
        (+ (fib (- x 1)) (fib (- x 2)))
    )
))

(writeln (fib 10))

Status

This is an experimental project, not intended for production use.

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

~14–30MB
~465K SLoC