Search found 2 matches

by lissomort
Fri Feb 01, 2019 2:21 am
Forum: Common Lisp
Topic: stdin input restrictions
Replies: 3
Views: 19005

Re: stdin input restrictions

Which platform, which implementation, and some code to show what you are doing would help me help you. yeap, of course OSX Mojave, Implementation - SBCL 1.4.16.21-825d4d007 Sample code smtg like this (defvar *data* '()) (defun read-data() (loop for index from 1 to 300 do (push (read) *data*))) (rea...
by lissomort
Tue Jan 29, 2019 7:17 am
Forum: Common Lisp
Topic: stdin input restrictions
Replies: 3
Views: 19005

stdin input restrictions

I need to get from input stream a lot of numbers (400+), separated by space. Testing in small amounts, manually (up to 100 numbers) - everything is ok. Coping input batch of 100 numbers to console prompt - everything is OK. But if I take 200 number (for example), it freezes and has any response. Is ...