Jason Sikes
Jason Sikes
On MacOS when I try to select text one of two things happens: 1. Nothing 2. The application crashes. The chances of which one will occur seem to be about...
In a procedure, a command that doesn't output to OUTPUT (an error) is misdiagnosed in the error text. For example: ``` to six output print 6 end six EXPECTED: ---------------------------------------------...
In the documentation it states that unmatched parenthesis (among other things) while reading a list will cause a continuation of input, but UCBLogo will accept a closing bracket. The closing...
``` ? make "a something ? ask :a [have "bar] ? ask :a [make "bar "baz] ? ask :a [show mynamep "bar] ; [1] true ? show mynamep "bar ;...
Is this a bug? ``` ? to g > localmake "foo "bar > local "foo > show :foo > end g defined ? g foo has no value in g...
When printing arrays the braces should always print. Currently, at the first print level the braces do not print.
Currently, the standard library is stored in the source code and read in during qlogo startup. We could decrease startup time by moving the standard library to an external database,...
SAVEPICT used to work until Qt 5.8 when reading from a paint device was disabled for security reasons. Depends on #54
Currently, the canvas is implemented using raw OpenGL. We should see what performance penalties there are (if any) for using QPainter for drawing. The benefits are that we can more...
This is a high priority. Currently, when Logo source code is parsed then a syntax tree is created. Then when the code is executed the tree is walked. This works...