Skip to content

tan-language/tan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Copyright © 2022 Georgios Moschovitis.

Releases

No releases published

Packages

No packages published

Languages