: Do you have an idea for a fun project in Pascal? It doesn't matter
: if you've worked on it or not.
:
: What kind of project do you think would be educational to a beginner
: or intermediate user of Pascal?
For a really fun project (IMHO) try writing a text editor without using another text editor. I.e., bootstrap programming. The first step is to use the DOS COPY command to create a the most fundamental editor possible, i.e., one that just lets you enter text, not change it. Then use that editor to add the capability to add new text, delete text and change text.
The editor itself should not be complex. It should be something like EDLIN, a simple line editor that came with earlier versions of DOS. Try Googling EDLIN for the specs on EDLIN.
I actually did this a few years back but, better editors being available of course, I never used it once I got it done.