Math utilities for ForgeScript — clean, fast, and expressive.
npm install @weebforge/mathbash
npm install github:weebforge/ForgeMath
`
$3
`bash
npm install github:weebforge/ForgeMath#dev
`
Setup
Here is a small setup with an example code.
`ts
// import { ForgeMath } from "@weebforge/math";
const { ForgeMath } = require("@weebforge/math");
const client = new ForgeClient({
extensions: [
new ForgeMath()
]
});
client.commands.addCommand({
name: "factorial",
type: "messageCreate",
code: 5! = $factorial[5]
});
``