aboutsummaryrefslogtreecommitdiff
path: root/content/blog/golang/funge98-interpreter.md
diff options
context:
space:
mode:
authorJulien Dessaux2022-06-01 15:57:45 +0200
committerJulien Dessaux2022-06-01 15:59:02 +0200
commit66a9e75608ae9a4c0bf3611c7fc8a5539d429f33 (patch)
tree61a659701abbdca20808dc42c9e34135069b8272 /content/blog/golang/funge98-interpreter.md
parentUpdated dependencies (diff)
downloadwww-66a9e75608ae9a4c0bf3611c7fc8a5539d429f33.tar.gz
www-66a9e75608ae9a4c0bf3611c7fc8a5539d429f33.tar.bz2
www-66a9e75608ae9a4c0bf3611c7fc8a5539d429f33.zip
Fixed git.adyxax.org urls following gitea to cgit migration
Diffstat (limited to 'content/blog/golang/funge98-interpreter.md')
-rw-r--r--content/blog/golang/funge98-interpreter.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/blog/golang/funge98-interpreter.md b/content/blog/golang/funge98-interpreter.md
index 0228b58..d64ebeb 100644
--- a/content/blog/golang/funge98-interpreter.md
+++ b/content/blog/golang/funge98-interpreter.md
@@ -8,7 +8,7 @@ date: 2021-09-27
[Funge-98](https://github.com/catseye/Funge-98/blob/master/doc/funge98.markdown) is an esoteric programming language that like most [esolangs](https://esolangs.org/) is designed to be fun, without any particular use, and in particular impossible to compile. I like Funge-98 for its indecipherable two-dimensional grid of instructions and data mixed together, where execution can proceed in any direction of that grid and wrap around if is would leave the grid.
-I began implementing this interpreter about two weeks ago when trying to resurrect [my Funge-98 IRC bot](https://git.adyxax.org/adyxax/b98/src/branch/master/bot.b98). I had trouble compiling [Fungi](https://github.com/thomaseding/fungi) the haskell Funge-98 interpreter that I used at that time and while I managed to use [Cfunge](https://github.com/VorpalBlade/cfunge) to replace it that was too late : I was already tempted by the idea to write my own interpreter and could not resist.
+I began implementing this interpreter about two weeks ago when trying to resurrect [my Funge-98 IRC bot](https://git.adyxax.org/adyxax/b98/tree/bot.b98). I had trouble compiling [Fungi](https://github.com/thomaseding/fungi) the haskell Funge-98 interpreter that I used at that time and while I managed to use [Cfunge](https://github.com/VorpalBlade/cfunge) to replace it that was too late : I was already tempted by the idea to write my own interpreter and could not resist.
## Some interesting challenges