Skip to content

Conversation

@RichoKD
Copy link

@RichoKD RichoKD commented Oct 3, 2024

Added subtraction, multiplication and division to utils

pub fn sub_u8(x: u8, y: u8) -> u8{
    x - y
}

pub fn multiply_u8(x: u8, y: u8) -> u8{
    x * y
}

pub fn divide_u8(x: u8, y: u8) -> u8{
    x / y
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant