Created
December 2, 2020 05:47
-
-
Save SpexGuy/bca15f18c9bf1874c4632799998b40c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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