aboutsummaryrefslogtreecommitdiff
path: root/examples/07_sample_bot_structure/src/commands/math.rs
blob: 79bfc5207cbec1eacef65bb158ad3f6558b8b7e4 (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.to_string());
});