aboutsummaryrefslogtreecommitdiff
path: root/examples/07_sample_bot_structure/src/commands/math.rs
blob: 2b1c1d28bff0b4833399bfc07435ff1a64e935b8 (plain) (blame)
1
2
3
4
5
command!(multiply(_ctx, msg, _args, one: f64, two: f64) {
    let product = one * two;

    let _ = msg.channel_id.say(product);
});