ref: 792f79ee6dd1012e4b9d27837476b0e234a78b0c
dir: /test/strfind.myr/
use std const main = { printloc(std.strfind("", "")) printloc(std.strfind("", "a")) printloc(std.strfind("ab", "abc")) printloc(std.strfind("abc", "abc")) printloc(std.strfind("abcde", "abc")) printloc(std.strfind("abcde", "xyz")) printloc(std.strfind("abcde", "bcd")) printloc(std.strfind("abcde", "cde")) printloc(std.strfind("abcde", "def")) printloc(std.strfind("abcde", "abx")) } const printloc = {l match l | `std.Some loc: std.put("Found %z\n", loc) | `std.None: std.put("No match\n") ;; }