Skip to content

Instantly share code, notes, and snippets.

@SpexGuy
Created December 2, 2020 05:47
Show Gist options
  • Save SpexGuy/bca15f18c9bf1874c4632799998b40c1 to your computer and use it in GitHub Desktop.
Save SpexGuy/bca15f18c9bf1874c4632799998b40c1 to your computer and use it in GitHub Desktop.
var tok = std.mem.tokenize(line, "- :");
var min = try std.fmt.parseInt(u32, tok.next().?, 10);
var max = try std.fmt.parseInt(u32, tok.next().?, 10);
var char = tok.next().?[0];
var pass = tok.next().?;
assert(tok.next() == null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment