Skip to content

harshdoesdev/neko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project neko

a smol general purpose scripting language

Usage

  1. Clone this project, cd to it and install the neko command via cargo install

  2. Create a file with a .neko extension

fn greet(name)
    println("Hello, #{name}!")
end

names = ["momo", "luna", "niko", "suki", "taro"]

for name in names
    greet(name)
end
  1. Run the script with the following command
neko run ./hello.neko

Todos

  • basic langugage setup
  • basic example
  • basic cli
  • human-friendly error messages
  • neko standard library

About

a smol general purpose scripting language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages