Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
AlSchlo committed Feb 10, 2025
1 parent c5bcfa5 commit 52d4157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optd-core/src/dsl/parser/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub enum Expr {
Var(String), // Variable reference
Literal(Literal), // Literal values
Fail(String), // Failure with message
Closure(Vec<String>, Box<Expr>), // Anonymous functions
Closure(Vec<String>, Box<Expr>), // Anonymous functions v = (x, y) => x + y;
}

/// A case in a match expression
Expand Down

0 comments on commit 52d4157

Please sign in to comment.