Adding documentation for classical.rs, modifying compute_step with pointers

This commit is contained in:
elvis
2025-05-19 13:10:05 +02:00
parent 6d5be8c36c
commit 32c2fc2701
3 changed files with 35 additions and 6 deletions

View File

@ -55,7 +55,7 @@ CTX_process: RSprocess<'input> = {
next_process: Box::new(k)},
"nil" => RSprocess::Nill,
<identifier: Literal> =>
RSprocess::ConstantIdentifier{ identifier: identifier }
RSprocess::ConstantIdentifier{ identifier }
};
// ----- EnvironmentParser -----