diff options
Diffstat (limited to 'nim.html.markdown')
-rw-r--r-- | nim.html.markdown | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/nim.html.markdown b/nim.html.markdown index f84b8bbd..929d0a74 100644 --- a/nim.html.markdown +++ b/nim.html.markdown @@ -240,10 +240,6 @@ of aNo: addSugar() # No need for an `else` here. Only `yes` and `no` are possible. -proc pluralize(a: int): string = - if a > 1 or a == 0: return "s" - else: return "" - # # FFI # |