We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a10e4 commit 9efb76eCopy full SHA for 9efb76e
course14/lec14_en.md
@@ -335,7 +335,7 @@ let program = Program::{
335
```moonbit
336
enum StackValue {
337
Val(Value) // Ordinary value
338
- Func(@map.Map[String, Value]) // Function stack, stores previous local variables
+ Func(@immutable_hashmap.Map[String, Value]) // Function stack, stores previous local variables
339
}
340
341
enum AdministrativeInstruction {
@@ -346,7 +346,7 @@ enum AdministrativeInstruction {
346
struct State {
347
program : Program
348
stack : @immut/list.List[StackValue]
349
- locals : @map.Map[String, Value]
+ locals : @immutable_hashmap.Map[String, Value]
350
instructions : @immut/list.List[AdministrativeInstruction]
351
352
```
0 commit comments