GitHunt
AD

adisteyf/biscuit

simple programming language for configuration java apps

Biscuit

Programming language for configuration Java apps.

Syntax

set test "string"
set test1 123 // int
set test2 12.3 // double
set test3 true // boolean
test "new value"

Hello world program

Main.java

import org.bisqt.Biscuit;

public class Main {
    public static void main(String[] args) {
        Biscuit test = new Biscuit();
        test.readScript("<path to your biscuit script>/src/main/hw.bsqt");
    }
}

hw.bsqt

set $echo "Hello world"

How to build

  1. git clone https://github.com/adisteyf/biscuit.
  2. cd biscuit.
  3. ./gradlew build.

Languages

Java100.0%

Contributors

MIT License
Created July 5, 2024
Updated July 31, 2024
adisteyf/biscuit | GitHunt