Crates.io | tan |
lib.rs | tan |
version | 0.16.0 |
source | src |
created_at | 2023-01-01 17:45:43.67656 |
updated_at | 2024-10-26 07:13:24.252418 |
description | The Tan language |
homepage | |
repository | https://github.com/tan-language/tan |
max_upload_size | |
id | 748964 |
size | 401,017 |
Tan is a language for Humans and Machines.
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.
This is an experimental project, not intended for production use. However, the project is under active development.
Pull requests, issues, and comments are welcome! Make sure to add tests for new features and bug fixes.
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.