diff --git a/README.md b/README.md index 617e80c..14b0f67 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # Labast -A Labaski interpreter written in Rust. Fully supports Labashki specs 1.13. \ No newline at end of file + +A Labaski interpreter written in Rust. Fully supports Labashki specs 1.15.1 diff --git a/src/execute.rs b/src/execute.rs index 5977385..8305b10 100644 --- a/src/execute.rs +++ b/src/execute.rs @@ -8,11 +8,6 @@ fn find_labels(stack: &mut Stack) { let label = &stack.program[stack.program_counter as usize]; stack.program_counter += 1; - /* - * "Теперь трубой можно подменять значения в лейблах" - ? но как это реализовать? - Да и тем более, не понятно работает ли это вообще в lbruntime - */ if !label.name.starts_with('@') { continue; }