https://github.com/jrincayc/ucblogo-code
Revision 439651e96adff1a23cdffd99afe833ac1731a88f authored by Joshua Cogliati on 22 November 2020, 22:49:35 UTC, committed by GitHub on 22 November 2020, 22:49:35 UTC
FEATURE-CI: Initial pass at having a CI build.
2 parent s 0b2175b + ae144ba
Raw File
Tip revision: 439651e96adff1a23cdffd99afe833ac1731a88f authored by Joshua Cogliati on 22 November 2020, 22:49:35 UTC
Merge pull request #66 from dmalec/FEATURE-CI
Tip revision: 439651e
dsetsegmentsize
.SETSEGMENTSIZE num

	command.  Sets the number of nodes that Logo allocates from the
	operating system at once to num, which must be a positive integer.
	The name is dotted because bad things will happen if you use a
	number that's too small or too large for your computer.  The
	initial value is 16,000 for most systems, but is smaller for
	68000-based Macs.  Making it larger will speed up computations
	(by reducing the number of garbage collections) at the cost of
	allocating more memory than necessary.


back to top