Skip to content

Commit

Permalink
add bit-wise expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jun 5, 2024
1 parent 449cb92 commit 2595e6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ object Meta {

val unaryArithmeticOps: Seq[String] = Seq("+", "-")

val binaryArithmeticOps: Seq[String] = Seq("+", "-", "*", "/", "%")
val binaryArithmeticOps: Seq[String] = Seq("+", "-", "*", "/", "%", "&", "|", "^")

}

0 comments on commit 2595e6d

Please sign in to comment.