183 @verb #1971:"is_win" this none this rxdo #9342 @program #1971:"is_win" this none this "Returns true if the current player just won." xo = this.move % 2 ? "XXX" | "OOO" b = this.board return b[1..3] == xo || b[4..6] == xo || b[7..9] == xo || b[1] + b[5] + b[9] == xo || b[3] + b[5] + b[7] == xo || b[1] + b[4] + b[7] == xo || b[2] + b[5] + b[8] == xo || b[3] + b[6] + b[9] == xo . 0