Bump the revision number in the reference interpreter.
Chris Pressey
3 years ago
0 | 0 | /* ****************************************************************** |
1 | 1 | |
2 | 2 | bef.c - The Original Befunge-93 Interpreter/Debugger in ANSI C |
3 | v2.24 | |
3 | v2.25 | |
4 | 4 | |
5 | 5 | Copyright (c)1993-2018, Chris Pressey, Cat's Eye Technologies. |
6 | 6 | All rights reserved. |
71 | 71 | ****************************************************************** |
72 | 72 | |
73 | 73 | History: |
74 | ||
75 | v2.25: Dec 2018, Chris Pressey | |
76 | no changes to code other than bumping the version number | |
74 | 77 | |
75 | 78 | v2.24: Sep 2018, Chris Pressey |
76 | 79 | when & encounters an error or EOF condition it pushes |
275 | 278 | } |
276 | 279 | if (!quiet) |
277 | 280 | { |
278 | printf ("Befunge-93 Interpreter/Debugger v2.24\n"); | |
281 | printf ("Befunge-93 Interpreter/Debugger v2.25\n"); | |
279 | 282 | } |
280 | 283 | |
281 | 284 | memset(pg, ' ', LINEWIDTH * PAGEHEIGHT); |