Skip to content

Latest commit

 

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🦅 Hawk

Hawk is a friendly, expression-based, immutable functional programming language for math at scale

Philosophy

  • Simplicity
  • Immutability
  • No hidden behavior

Example

io := use "io"

fib := |n| {
  if n <= 1 {
    n
  } else {
    fib(n - 1) + fib(n - 2)
  }
}

fib(30) |> io:println(_)

About

🦅 A friendly functional programming language for math at scale

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages