Skip to content

Instantly share code, notes, and snippets.

Created February 13, 2018 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3f75d1ff9a7c147cc7c87604b7eb05aa to your computer and use it in GitHub Desktop.
Save anonymous/3f75d1ff9a7c147cc7c87604b7eb05aa to your computer and use it in GitHub Desktop.
import strutils
var s = "abbb"
s.removeSuffix('b')
assert s == "a"
var t = "abbb"
t.removeSuffix("b")
assert t == "a"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment