/*Welcome to sweet.js!You can play around with macro writing here on the left side andyour code will automatically be compiled on the right. This pagewill also save your code to localStorage on every successfulcompile so feel free to close the page and come back later!*/// The `syntax` keyword is used to create and name new macros.syntax inc = function (ctx) { let x = ctx.next().value; return #`${x} + 1`;}inc 100100 + 1;