command!(multiply(_ctx, msg, args) { let one = args.single::().unwrap(); let two = args.single::().unwrap(); let product = one * two; let _ = msg.channel_id.say(product); });