README.md

Для русскоговорящих

More About Languge

To work you need to install jdk 17 +

This language takes advantage of Java and simplifies it. This makes Lazurite quite simple. Basically, the language is used to create games and applications, because it has powerful libraries for this. But on it you can make bots for social networks, work with files, and much more.

Hello World in Lazurite!:

print("Hello World!")

lsoup:

using "lzr.net.lsoup"

lsoup.parser("https://www.lipsum.com")

title = lsoup.select("title")
text = lsoup.select("h3")

println(title)
print(text)

async example:

using "lzr.async"
func hel(arg){
    print(arg)
}
async.supply(hel("Hello"))

graph example:

using "lzrx.graph"
Frame()

fill(100,100,200)
rect(10,10,200,100)

fill(100,200,100)
lrect(100,100,100,100)

thread example:

using "lzr.utils.thread"
func th(arg){
   println("My " + str(arg) + " Thread")
}
for(i=0, i<10, i++){
    std.thread(::th, i)
}

Download

Download jar and exe files of the language interpreter can be downloaded in the Releases tab)

Contributions

We will review and help with all reasonable pull requests as long as the guidelines below are met.

  • The license header must be applied to all java source code files.
  • IDE or system-related files should be added to the .gitignore, never committed in pull requests.
  • In general, check existing code to make sure your code matches relatively close to the code already in the project.
  • Favour readability over compactness.
  • If you need help, check out the Google Java Style Guide for a reference.

Why Lazurite?

Why should you choose Lazurite?:

  • Simple syntax.
  • Using java features and simplifying them
  • Flexible syntax
  • Dynamic typing
  • Object-Oriented Language.

License

Lazurite is relseased under MIT License 2.0

See more about it!

Конвейеры
0 успешных
0 с ошибкой