Count occurrences of a substring: Difference between revisions

Content deleted Content added
Line 1,578:
<lang nim>import strutils
 
proc count(s, sub: string): int =
var i = 0
while true: