We've got a tiny code snippet we want to work, that looks like this:

```
let n = 3;
let mut x = 1;
let mut i = 1;
while i <= n {
x = x * i;
i += 1;
}
x
```

The first thing we need to do it get `<=` to lex.

https://video.infosec.exchange/w/jY9vC5ZaSQBPTPhoVZGi4p

#coding #video

Comments