Skip to content
Snippets Groups Projects
Commit 4352088b authored by Ralf Jung's avatar Ralf Jung
Browse files

mention a concrete language

parent 5f858a94
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ Inductive un_op : Set :=
Inductive bin_op : Set :=
(** We use "quot" and "rem" instead of "div" and "mod" to
better match the behavior of 'real' languages:
-30/-4 == 7. ("div" would return 8.) *)
e.g., in Rust, -30/-4 == 7. ("div" would return 8.) *)
| PlusOp | MinusOp | MultOp | QuotOp | RemOp (* Arithmetic *)
| AndOp | OrOp | XorOp (* Bitwise *)
| ShiftLOp | ShiftROp (* Shifts *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment