Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.19 KB

README.md

File metadata and controls

41 lines (32 loc) · 1.19 KB

taro

README text here.

taro - sweat programming language

Languages to look at

Packages to use

Research

Things to read

(@ "Adds 1 to the given number")
(: Nat -> Nat)
(def (add1 n)
  (+ n 1))
  
(examples add1
  [0  1]
  [-1 error]
  [15 16])