shulkerscript 0.1.0

Shulkerscript language implementation with compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
namespace "transpiling-test";

#[deobfuscate]
fn main() {
    /say Hello, World!

    as("@a"), if ("entity @p[distance=..5]") {
        /say You are close to me!
    } else {
        /say You are alone!
    }
}