WingedSeal / jmc

A compiler for JMC (JavaScript-like Minecraft Function), a mcfunction extension language for making Minecraft Datapack
https://jmc.wingedseal.com
MIT License
64 stars 10 forks source link

[FEATURE_REQUEST] Add an expression calculation #96

Open WingedSeal opened 6 months ago

WingedSeal commented 6 months ago
$a = ($b + $c) - 5
Nico314159 commented 2 months ago

Hmm, maybe we could have a multi-step rewrite for this? (just an idea I thought of for how the code would work)

So it would first turn that into

$a = $b + $c;
$a -= 5;

and then

$a = $b;
$a += $c;
$a -= 5;

and then turn it into mcfunction.