11<!DOCTYPE html>
22< html >
33 < head >
4- < title > IEO-fork </ title >
4+ < title > Interpret Esolangs Online </ title >
55 </ head >
66 < body >
7- < h3 > Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</ h3 >
8- < script defer src ="galax.js "> </ script >
7+ < h3 > Welcome to Interpret Esolangs Online</ h3 >
8+ < p >
9+ Interpret Esolangs Online allows you to run programs in various esoteric
10+ languages, including brainfuck, deadfish, etc.
11+ </ p >
912 < script defer src ="alphuck.js "> </ script >
1013 < script defer src ="aplwsi.js "> </ script >
1114 < script defer src ="arithmetic.js "> </ script >
@@ -38,14 +41,13 @@ <h3>Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</h3>
3841 < script defer src ="reversefuck.js "> </ script >
3942 < script defer src ="smbf.js "> </ script >
4043 < script defer src ="smbf_sharp.js "> </ script >
41- < script defer src ="six.js "> </ script >
4244 < script defer src ="text.js "> </ script >
4345 < script defer src ="wee.js "> </ script >
4446 < script defer src ="wte_teplw.js "> </ script >
4547 < script defer src ="wizzcake.js "> </ script >
4648 < script defer src ="wizzcakep.js "> </ script >
4749 < select id ="lang ">
48- < option > > *& < < &^ </ output >
50+ < option > 6 </ option >
4951 < option > Alphuck</ option >
5052 < option > APLWSI</ option >
5153 < option > Arithmetic</ option >
@@ -78,7 +80,6 @@ <h3>Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</h3>
7880 < option > ReverseFuck</ option >
7981 < option > Self-modifying Brainfuck</ option >
8082 < option > Self-modifying Brainfuck#</ option >
81- < option > Six</ option >
8283 < option > Text</ option >
8384 < option > Weeeeeeeeeeeeeeeeeeeeeeeeeeeeee</ option >
8485 < option >
@@ -94,7 +95,7 @@ <h3>Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</h3>
9495 var langname = document . getElementById ( "lang" ) . value ;
9596 var code = document . getElementById ( "program" ) . value ;
9697 var input = document . getElementById ( "input" ) . value ;
97- funcs [ ">*&<<&^ " ] = galax ;
98+ funcs [ "6 " ] = six ;
9899 funcs [ "Alphuck" ] = alphuck ;
99100 funcs [ "APLWSI" ] = aplwsi ;
100101 funcs [ "Arithmetic" ] = arithmetic ;
@@ -127,10 +128,11 @@ <h3>Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</h3>
127128 funcs [ "ReverseFuck" ] = reversefuck ;
128129 funcs [ "Self-modifying Brainfuck" ] = smbf ;
129130 funcs [ "Self-modifying Brainfuck#" ] = smbf_sharp ;
130- funcs [ "Six" ] = Six ;
131131 funcs [ "Text" ] = text ;
132132 funcs [ "Weeeeeeeeeeeeeeeeeeeeeeeeeeeeee" ] = wee ;
133- funcs [ "Welcome to Esolang, the esoteric programming languages wiki!" ] = wte_teplw ;
133+ funcs [
134+ "Welcome to Esolang, the esoteric programming languages wiki!"
135+ ] = wte_teplw ;
134136 funcs [ "Wizzcake" ] = wizzcake ;
135137 funcs [ "Wizzcake+" ] = wizzcakep ;
136138 var func = funcs [ langname ] ;
@@ -139,7 +141,6 @@ <h3>Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</h3>
139141 var erroc = false ;
140142 try {
141143 var output = func ( code , input ) ;
142- if ( output . length == 4096 ) { throw new Error ( 'The program exited 4096 bytes:' , '\n' , output ) } ;
143144 } catch ( err ) {
144145 document . getElementById ( "log" ) . value = err . message + "\n" ;
145146 erroc = true ;
@@ -299,11 +300,12 @@ <h3>Welcome to IEO-fork. It's basically a fork of Interpret Esolangs Online</h3>
299300 title ="Upload a local file to the webpage "
300301 />
301302 < br />
302- < a href ="https://github.com/none-None1/Interpret-Esolangs-Online "> Source code</ a >
303- of the original repo, < a href ="https://github.com/Thevitebsk/IEO-fork "> Source code</ a >
304- of this repo.
303+ < a href ="https://github.com/none-None1/Interpret-Esolangs-Online "
304+ > The source code</ a
305+ >
306+ of this webpage.
305307 < br >
306- < a href ="https://none-none1.github.io/Interpret-Esolangs-Online/ contribute.html "> Contribution Guide</ a > from the original repo
308+ < a href ="contribute.html "> Contribution Guide</ a >
307309 < hr />
308310 < a href ="about.html "> About</ a >
309311 </ body >
0 commit comments