aboutsummaryrefslogtreecommitdiff
path: root/examples/07_sample_bot_structure/src/commands/math.rs
blob: 3aaccc46131262cb56096be9c7c5bcc38b9ba54f (plain) (blame)
1
2
3
4
5
6
7
8
command!(multiply(_ctx, msg, args) {
    let one = args.single::<f64>().unwrap();
    let two = args.single::<f64>().unwrap();

    let product = one * two;

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