Apa arti LHS Rust

// LHS is the left hand side of an assignment.
// RHS is the right hand side of and assignment.
let LHS = 5;
let RHS = 9;
let example = LHS+RHS;
Coding Wizard