A question. I saw in the developer notes that you are dyslexic.
Doesn't that also affect programming itself? Well, I mean, there are also letters, numbers and special characters (Sonderzeichen).
And in principle there is a certain grammar in programming.
How does that fit together?
Visual studio code has suggested consolations show up as your typing, usually their right. Also when the game crashes it tells you what line of code it crashed on, so its easy to find broken code.
It being a visual novel the only peace of complex code in the game is this one, so its not a big problem. This code reads the PC name for a spoiler related reason.
python:
if os.name == 'nt':
import os
for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):
system = os.environ.get(name)
elif os.name == 'posix':
import os
for user in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):
system = os.environ.get('USER')