comparison bin/whatis @ 11854:cc933fc31298 draft

<b_jonas> fetch bin/whatis https://hack.esolangs.org/get/bin/whatis
author HackEso <hackeso@esolangs.org>
date Tue, 16 Jul 2019 16:54:42 +0000
parents 97b02eed7f57
children dff0129e4a40
comparison
equal deleted inserted replaced
11853:97b02eed7f57 11854:cc933fc31298
20 if argfold == parts.group(1).casefold(): 20 if argfold == parts.group(1).casefold():
21 match = True 21 match = True
22 foundv[argind] = True 22 foundv[argind] = True
23 if match: 23 if match:
24 print(line, end="") 24 print(line, end="")
25 for arg, found in zip(foundv): 25 for arg, found in zip(argorg, foundv):
26 if not found: 26 if not found:
27 print(arg + ": nothing appropriate.") 27 print(arg + ": nothing appropriate.")