Category talk:Wren-ioutil: Difference between revisions

(Added source code for new 'Wren-ioutil' module.)
 
(→‎Source code: Bug-fix.)
Line 294:
while (true) {
Output.fwrite(prompt)
var text = Stdin.readlinereadLine()
if (text.count < minLen) {
System.print("Must have a minimum length of %(minLen) characters, try again.")
Line 311:
while (true) {
Output.fwrite(prompt)
var text = Stdin.readlinereadLine()
if (text.count < minLen || text.count > maxLen) {
if (maxLen > minLen) {
9,486

edits