Go to file
2021-03-02 21:51:59 +01:00
examples
resources
scripts Complete the zsh-completion.zsh script. 2021-02-28 22:28:05 +01:00
src Lex identifiers and numbers instead of just strings, and use isdigit instead of isalphanum in lexer.cpp. 2021-03-02 21:51:59 +01:00
changelog.txt Add a changelog.txt file and set the CPACK_RPM_BUILDREQUIRES in the CMakeLists.txt file. 2021-03-01 19:01:15 +01:00
CMakeLists.txt Use a static libgcc on CLang too. 2021-03-01 20:42:06 +01:00
desc.txt
Jenkinsfile Also set the debian package architecture and generate deb packages in the Jenkinsfile. 2021-03-01 12:24:51 +01:00
LICENSE.txt
README.md

Yerbacon

Build Status

Yerbacon logo Aka Yer Bacon,
  • A language that transpiles into lua, javascript or python code.

Here's how the basic "hello world" script will look like.

main #= [] -> {
  println "Hello, World!"
}

Planned features:

  • Type inference
  • Null safety
  • Compilation to native code?

Getting Started

Variables assigned using #= can't be changed (they are "final"), while the ones affected using the normal operator (=) can.