Tea is a strongly-typed, compiled language designed for building tools and applications. Write familiar code, compile to native binaries, ship instantly.
git clone https://github.com/special-tea/tea.gitBuilt specifically for command-line tools with native binary compilation. Perfect for building fast, portable utilities.
Zero startup time, no JIT overhead, pure native performance. Your tools start instantly with minimal resource usage.
Catch bugs at compile time with powerful static typing and inference. Write confident code with full type safety.
Try the interactive code playground
def greet(name: String) -> String
"Hello, ${name}!"
end
var names = ["Alice", "Bob", "Charlie"]
for person of names
print(greet(person))
endClick Run to execute