diff --git a/content/reference/hoon/stdlib/1a.md b/content/reference/hoon/stdlib/1a.md index 7884119..835cf09 100644 --- a/content/reference/hoon/stdlib/1a.md +++ b/content/reference/hoon/stdlib/1a.md @@ -241,12 +241,7 @@ An [`atom`](/reference/glossary/atom). ~/ %div |: [a=`@`1 b=`@`1] ^- @ - ~_ leaf+"divide-by-zero" - ?< =(0 b) - =+ c=0 - |- - ?: (lth a b) c - $(a (sub a b), c +(c)) + -:(dvr a b) ``` #### Examples @@ -302,10 +297,14 @@ A cell of [`atoms`](/reference/glossary/atom). ```hoon ++ dvr - ~/ %dvr - |= [a=@ b=@] + |: [a=`@`1 b=`@`1] ^- [p=@ q=@] - [(div a b) (mod a b)] + ~_ leaf+"divide-by-zero" + ?< =(0 b) + =+ c=0 + |- + ?: (lth a b) [c a] + $(a (sub a b), c +(c)) ``` #### Examples