Skip to content

Lua 5.4 and Java 21 are supported

Choose a tag to compare

@tailot tailot released this 12 Jun 09:31
· 7 commits to main since this release

Release Notes v1.1.9

  • Available openjdk21-jdk
    Now you can define and run snippets in JAVA like this:
#!/usr/bin/java --source 21

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
  • Available lua 5.4
  • Now you can define and run snippets in Lua like this:
#!/usr/bin/env lua5.4

print("huuuu raaaaa")
  • Responsiveness and bug fix