1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-04 13:57:38 +02:00
This commit is contained in:
JasonJAyalaP
2014-09-19 20:04:08 -05:00
parent 08c18afeb3
commit 91e68f5830

View File

@@ -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
#