This commit is contained in:
n3tael 2024-02-13 18:12:36 +02:00
parent 4a5ef76889
commit c7708db06e
Signed by: n3tael
GPG Key ID: F305925762F035A8
2 changed files with 2 additions and 6 deletions

View File

@ -1,2 +1,3 @@
# Labast # Labast
A Labaski interpreter written in Rust. Fully supports Labashki specs 1.13.
A Labaski interpreter written in Rust. Fully supports Labashki specs 1.15.1

View File

@ -8,11 +8,6 @@ fn find_labels(stack: &mut Stack) {
let label = &stack.program[stack.program_counter as usize]; let label = &stack.program[stack.program_counter as usize];
stack.program_counter += 1; stack.program_counter += 1;
/*
* "Теперь трубой можно подменять значения в лейблах"
? но как это реализовать?
Да и тем более, не понятно работает ли это вообще в lbruntime
*/
if !label.name.starts_with('@') { if !label.name.starts_with('@') {
continue; continue;
} }