8000 GitHub - rockrid3r/Kaleidoscope: Follow through LLVM tutorial to implement Kaleidoscope language
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Follow through LLVM tutorial to implement Kaleidoscope language

Notifications You must be signed in to change notification settings

rockrid3r/Kaleidoscope

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kaleidoscope programming language

Example

# Compute the x'th fibonacci number.
def fib(x)
  if x < 3 then
    1
  else
    fib(x-1)+fib(x-2)

# This expression will compute the 40th number.
fib(40)

Appendix

Language grammar

About

Follow through LLVM tutorial to implement Kaleidoscope language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0