From c7708db06ed59a5d2ea287ab3564200ca8e4bcab Mon Sep 17 00:00:00 2001 From: n3tael Date: Tue, 13 Feb 2024 18:12:36 +0200 Subject: [PATCH] 1.15.1 --- README.md | 3 ++- src/execute.rs | 5 ----- 2 files changed, 2 insertions(+), 6 deletions(-) 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; }