inout

In Mojo, inout is a keyword used in function argument declarations to indicate that the function receives a mutable reference to the argument. This means any changes made to the argument inside the function will be visible outside the function.