< 1656720004 219666 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :*.net *.split < 1656720004 552984 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot QUIT :*.net *.split < 1656720004 958377 :citrons!~citrons@alt.mondecitronne.com QUIT :*.net *.split < 1656720005 245151 :lambdabot!~lambdabot@haskell/bot/lambdabot QUIT :*.net *.split < 1656720025 895433 :citrons!~citrons@alt.mondecitronne.com JOIN #esolangs citrons :citrons < 1656720116 917762 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1656720127 207626 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot JOIN #esolangs perlbot :ZNC - https://znc.in > 1656720183 732011 PRIVMSG #esolangs :14[[07Six instruction language :)14]]4 M10 02https://esolangs.org/w/index.php?diff=99230&oldid=99190 5* 03PythonshellDebugwindow 5* (+49) 10This language seems underspecified given the example < 1656720200 618345 :lambdabot!~lambdabot@haskell/bot/lambdabot JOIN #esolangs lambdabot :Lambda_Robots:_100%_Loyal < 1656723659 908981 :Hooloovoo!~Hooloovoo@hax0rbana.org QUIT :Ping timeout: 255 seconds < 1656723672 730710 :Hoolootwo!~Hooloovoo@hax0rbana.org JOIN #esolangs * :ZNC - https://znc.in > 1656724692 30685 PRIVMSG #esolangs :14[[07BunnyBell14]]4 10 02https://esolangs.org/w/index.php?diff=99231&oldid=99219 5* 03PixelatedStarfish 5* (+0) 10 < 1656725249 491079 :Soni!~quassel@autistic.space PRIVMSG #esolangs :hmm < 1656725260 182346 :Soni!~quassel@autistic.space PRIVMSG #esolangs :pforth only requires input and output < 1656725265 404607 :Soni!~quassel@autistic.space PRIVMSG #esolangs :brainfuck has , and . < 1656725272 752127 :Soni!~quassel@autistic.space PRIVMSG #esolangs :can you compile pforth to brainfuck? < 1656725302 625318 :Soni!~quassel@autistic.space PRIVMSG #esolangs :and if so, how painful would that be? > 1656726634 276824 PRIVMSG #esolangs :14[[07BunnyBell14]]4 10 02https://esolangs.org/w/index.php?diff=99232&oldid=99231 5* 03PixelatedStarfish 5* (+42) 10/* On First Class Functions */ < 1656727513 444250 :imode!sid553797@user/imode PRIVMSG #esolangs :pforth only requires stdin and stdout? < 1656729038 803932 :Sgeo!~Sgeo@user/sgeo PRIVMSG #esolangs :Are there any CPUs that do not support co-operative multitasking? Are there CPUs that do not support pre-emptive multitasking? (The latter sounds more plausible to me, just don't have a timer interrupt, right?) < 1656730528 330121 :Soni!~quassel@autistic.space PRIVMSG #esolangs :imode: it only requires charIn and charOut < 1656730533 507403 :Soni!~quassel@autistic.space PRIVMSG #esolangs :so, yes < 1656730542 803558 :imode!sid553797@user/imode PRIVMSG #esolangs :hardcore. < 1656730548 259230 :Soni!~quassel@autistic.space PRIVMSG #esolangs :obviously you'll be missing some functionality, but those are the "hard" requirements < 1656730557 340418 :imode!sid553797@user/imode PRIVMSG #esolangs :Sgeo: no, and yes. < 1656730595 273797 :imode!sid553797@user/imode PRIVMSG #esolangs :the ease of porting to BF is dependent on whether or not pforth assumes a von neumann or harvard architecture. < 1656730603 679183 :imode!sid553797@user/imode PRIVMSG #esolangs :BF is harvard. < 1656730667 751568 :imode!sid553797@user/imode PRIVMSG #esolangs :cooperative multitasking is literally "jump to the next task" or "jump to the scheduler" manually. < 1656730672 594896 :imode!sid553797@user/imode PRIVMSG #esolangs :you'd have to get rid of or restrict jumps. < 1656730906 22309 :Soni!~quassel@autistic.space PRIVMSG #esolangs :imode: it's an interpreter < 1656730925 33794 :Soni!~quassel@autistic.space PRIVMSG #esolangs :but also, by "porting", we mean "compiling the C code into equivalent brainfuck" < 1656730971 844996 :imode!sid553797@user/imode PRIVMSG #esolangs :so long as it doesn't rely on jumping to dynamic addresses, should be fine. < 1656730982 580361 :imode!sid553797@user/imode PRIVMSG #esolangs :there are plenty of C to BF compilers, why not give it a shot? < 1656730989 422007 :Soni!~quassel@autistic.space PRIVMSG #esolangs :define "dynamic addresses"? < 1656731043 604258 :Soni!~quassel@autistic.space PRIVMSG #esolangs :if you mean function pointers... well, why wouldn't those work? < 1656731052 486236 :Soni!~quassel@autistic.space PRIVMSG #esolangs :sure, you'd need jump tables, like you do in wasm < 1656731064 849041 :Soni!~quassel@autistic.space PRIVMSG #esolangs :but they can be completely defined at compile-time < 1656731091 294822 :imode!sid553797@user/imode PRIVMSG #esolangs :forth has a dictionary full of cells, some of which point to words, some don't. < 1656731094 57311 :Soni!~quassel@autistic.space PRIVMSG #esolangs :(like you do in wasm) < 1656731113 215010 :imode!sid553797@user/imode PRIVMSG #esolangs :if you wanna compile a word, you need to build it out of existing addresses. < 1656731124 297682 :imode!sid553797@user/imode PRIVMSG #esolangs :guess it could work. < 1656731126 812980 :imode!sid553797@user/imode PRIVMSG #esolangs :go for it. < 1656733325 359497 :Sgeo!~Sgeo@user/sgeo PRIVMSG #esolangs :Which graphical OSes don't have a native concept of a command line? (e.g. Classic Mac OS. Developer tools for that made its own fake thing often) < 1656733532 570353 :zzo38!~zzo38@host-24-207-14-22.public.eastlink.ca PRIVMSG #esolangs :I think TRON does not have a standard command-line interface (although some implementations might have one), although there is a standard way for programs to define a entry point with command-line arguments. However, not much information is easy to find, but from what I know that seems to be the case. < 1656733675 501609 :zzo38!~zzo38@host-24-207-14-22.public.eastlink.ca PRIVMSG #esolangs :Android cell phones and iPhone also does not seem to have a command-line interface > 1656736091 977278 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99233&oldid=99196 5* 03PixelatedStarfish 5* (+13) 10/* Token Precedence */ > 1656736925 150695 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99234&oldid=99233 5* 03PixelatedStarfish 5* (+89) 10/* Useful Operators */ > 1656737418 319591 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99235&oldid=99234 5* 03PixelatedStarfish 5* (+89) 10/* Argument Tokens */ > 1656737576 99596 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99236&oldid=99235 5* 03PixelatedStarfish 5* (+1) 10/* Hello World */ > 1656737647 125518 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99237&oldid=99236 5* 03PixelatedStarfish 5* (+1) 10/* Truth Machine */ > 1656737751 323354 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99238&oldid=99237 5* 03PixelatedStarfish 5* (+2) 10/* Truth Machine */ > 1656737810 61279 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99239&oldid=99238 5* 03PixelatedStarfish 5* (+1) 10/* Cat (Echo) */ > 1656737861 686380 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99240&oldid=99239 5* 03PixelatedStarfish 5* (-93) 10/* Useful Operators */ > 1656737916 717413 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99241&oldid=99240 5* 03PixelatedStarfish 5* (+63) 10/* Declaring Variables: The Refer Operator (&) */ > 1656737932 906212 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99242&oldid=99241 5* 03PixelatedStarfish 5* (+0) 10/* Buckets, Indexing, and Nesting */ > 1656737954 951967 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99243&oldid=99242 5* 03PixelatedStarfish 5* (+1) 10/* Specifying Function Input Types */ > 1656737998 326414 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99244&oldid=99243 5* 03PixelatedStarfish 5* (+6) 10/* Overloading */ > 1656738852 479467 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99245&oldid=99244 5* 03PixelatedStarfish 5* (-1) 10/* Useful Operators */ > 1656738993 511885 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99246&oldid=99245 5* 03PixelatedStarfish 5* (+0) 10/* Structs: Defining a Data Type */ > 1656739024 501331 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99247&oldid=99246 5* 03PixelatedStarfish 5* (+0) 10/* Use with Constants */ > 1656739142 898580 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99248&oldid=99247 5* 03PixelatedStarfish 5* (-10) 10/* Commands */ > 1656739202 396288 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99249&oldid=99248 5* 03PixelatedStarfish 5* (+0) 10/* Proof by Translation to bf */ < 1656741414 127069 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer > 1656744159 497727 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03Presauced 5* 10New user account < 1656744310 231295 :impomatic!~impomatic@2a00:23c7:5fac:e001:4934:6cc5:c930:ca63 JOIN #esolangs impomatic :John Metcalf > 1656744729 436746 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=99250&oldid=99221 5* 03Presauced 5* (+175) 10 < 1656744906 872755 :impomatic!~impomatic@2a00:23c7:5fac:e001:4934:6cc5:c930:ca63 QUIT :Quit: impomatic < 1656744914 780163 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656744927 257702 :impomatic!~impomatic@2a00:23c7:5fac:e001:4934:6cc5:c930:ca63 JOIN #esolangs impomatic :John Metcalf < 1656745178 62765 :impomatic!~impomatic@2a00:23c7:5fac:e001:4934:6cc5:c930:ca63 QUIT :Client Quit < 1656745199 203453 :impomatic!~impomatic@2a00:23c7:5fac:e001:4934:6cc5:c930:ca63 JOIN #esolangs impomatic :John Metcalf > 1656746159 881514 PRIVMSG #esolangs :14[[07Matrix (data structure)14]]4 10 02https://esolangs.org/w/index.php?diff=99251&oldid=88005 5* 03Peter 5* (+1) 10 < 1656746664 546006 :Koen!~Koen@2a01:e34:ec7c:30:b5cf:e8ba:be90:e372 JOIN #esolangs * :Koen < 1656747137 946213 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656747205 387683 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656747317 196044 :impomatic!~impomatic@2a00:23c7:5fac:e001:4934:6cc5:c930:ca63 QUIT :Quit: impomatic < 1656747419 902732 :moony!~moony@hellomouse/dev/moony QUIT :Quit: leaving > 1656749823 812322 PRIVMSG #esolangs :14[[07Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=99252&oldid=98772 5* 03Presauced 5* (+297) 10/* C */ < 1656750525 696545 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656753954 820482 :Koen!~Koen@2a01:e34:ec7c:30:b5cf:e8ba:be90:e372 QUIT :Remote host closed the connection < 1656754183 93041 :tech_exorcist!13203@user/tech-exorcist/x-0447479 JOIN #esolangs tech_exorcist :he/him - IT, EN < 1656754315 474247 :int-e!~noone@int-e.eu PRIVMSG #esolangs :`learn The password of the month is redundant but not distributed. < 1656754320 452593 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :Relearned 'password': The password of the month is redundant but not distributed. < 1656754466 471152 :int-e!~noone@int-e.eu PRIVMSG #esolangs :. o O ( Also a bit uninspired. ) < 1656754635 286602 :Koen!~Koen@78.199.192.3 JOIN #esolangs * :Koen < 1656755244 678560 :sprout!~quassel@2a02-a467-ccd6-1-e5d3-29e4-39a-7fe2.fixed6.kpn.net JOIN #esolangs sprout :sprout < 1656755555 229108 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656758656 637345 :sprout!~quassel@2a02-a467-ccd6-1-e5d3-29e4-39a-7fe2.fixed6.kpn.net QUIT :Ping timeout: 272 seconds < 1656761364 378095 :sprout!~quassel@2a02-a45f-f170-1-8d18-3573-5724-8020.fixed6.kpn.net JOIN #esolangs * :sprout < 1656761824 628719 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656762027 139272 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1656762415 708832 PRIVMSG #esolangs :14[[07Koopas are Involved14]]4 10 02https://esolangs.org/w/index.php?diff=99253&oldid=99212 5* 03Oshaboy 5* (+274) 10Added Truth Machine < 1656763999 847458 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656764384 356608 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1656765612 113462 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99254&oldid=99228 5* 03Yes 5* (+158) 10 > 1656765684 699843 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99255&oldid=99254 5* 03Yes 5* (+19) 10 > 1656765738 766044 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99256&oldid=99255 5* 03Yes 5* (+8) 10 > 1656765750 512020 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99257&oldid=99256 5* 03Yes 5* (+13) 10 < 1656766067 676423 :Koen!~Koen@78.199.192.3 QUIT :Remote host closed the connection < 1656766477 286159 :Koen!~Koen@2a01:e34:ec7c:30:6c5e:4bfd:ea9f:5966 JOIN #esolangs * :Koen < 1656766478 284206 :Koen_!~Koen@2a01:e34:ec7c:30:8da7:cb13:b8e1:fb90 JOIN #esolangs * :Koen < 1656766752 286842 :Koen!~Koen@2a01:e34:ec7c:30:6c5e:4bfd:ea9f:5966 QUIT :Ping timeout: 260 seconds < 1656768472 421157 :sprout!~quassel@2a02-a45f-f170-1-8d18-3573-5724-8020.fixed6.kpn.net QUIT :Ping timeout: 248 seconds < 1656768681 285558 :sprout!~quassel@2a02-a45f-f170-1-8d18-3573-5724-8020.fixed6.kpn.net JOIN #esolangs sprout :sprout > 1656769522 332771 PRIVMSG #esolangs :14[[07lang14]]4 M10 02https://esolangs.org/w/index.php?diff=99258&oldid=99257 5* 03PythonshellDebugwindow 5* (+107) 10Add categories < 1656769588 996182 :Soni!~quassel@autistic.space PRIVMSG #esolangs :what's a good, fairly complete C-to-brainfuck compiler? < 1656770976 360257 :fizzie!irc@selene.zem.fi PRIVMSG #esolangs :There was that ELVM thing. But I don't know if it's any good, and "fairly complete" might be a stretch. < 1656770990 34196 :fizzie!irc@selene.zem.fi PRIVMSG #esolangs :https://github.com/shinh/elvm anyway. < 1656772627 766008 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1656773825 949136 PRIVMSG #esolangs :14[[07!lyriclydemoteestablishcommunism!14]]4 M10 02https://esolangs.org/w/index.php?diff=99259&oldid=90604 5* 03Yes 5* (+164) 10 > 1656774155 283367 PRIVMSG #esolangs :14[[07!lyriclydemoteestablishcommunism!14]]4 10 02https://esolangs.org/w/index.php?diff=99260&oldid=99259 5* 03Yes 5* (-2) 10 > 1656774270 178717 PRIVMSG #esolangs :14[[07User:Yes14]]4 10 02https://esolangs.org/w/index.php?diff=99261&oldid=99226 5* 03Yes 5* (+63) 10 > 1656774289 455458 PRIVMSG #esolangs :14[[07User:Yes14]]4 10 02https://esolangs.org/w/index.php?diff=99262&oldid=99261 5* 03Yes 5* (+21) 10 > 1656774310 914098 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99263&oldid=99258 5* 03Yes 5* (-17) 10 > 1656774339 288577 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99264&oldid=99263 5* 03Yes 5* (+18) 10 < 1656774412 133831 :Soni!~quassel@autistic.space PRIVMSG #esolangs :huh < 1656774417 663552 :Soni!~quassel@autistic.space PRIVMSG #esolangs :it is very non-optimizing < 1656774448 379976 :int-e!~noone@int-e.eu PRIVMSG #esolangs :unsurprising < 1656774489 521950 :int-e!~noone@int-e.eu PRIVMSG #esolangs :optimizing brainfuck code is about as attractive as riding a dead horse, except for really simple code and golfing, which can be fun. < 1656774667 483776 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I suppose it can be interesting, but in the end you'll still run okay code abysmally slowly because the storage model sucks for performance. < 1656774690 84386 :Soni!~quassel@autistic.space PRIVMSG #esolangs :well yeah... < 1656774690 930182 :int-e!~noone@int-e.eu PRIVMSG #esolangs :And with another slowdown from awful arithmetic, of course. > 1656774946 127694 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99265&oldid=99249 5* 03PixelatedStarfish 5* (+7) 10/* Commands */ > 1656774962 479428 PRIVMSG #esolangs :14[[07Braindead14]]4 M10 02https://esolangs.org/w/index.php?diff=99266&oldid=98237 5* 03PythonshellDebugwindow 5* (+77) 10Stub, add categories > 1656775409 751451 PRIVMSG #esolangs :14[[07LISPS14]]4 N10 02https://esolangs.org/w/index.php?oldid=99267 5* 03Yes 5* (+749) 10Created page with "LISPS was made by [[User:Yes]] in 2022, and stood for List Processing Sussy LISPS is LISP but the docs requires you to play 5000 games of among us. As such, the person who p..." > 1656775430 549218 PRIVMSG #esolangs :14[[07User:Yes14]]4 10 02https://esolangs.org/w/index.php?diff=99268&oldid=99262 5* 03Yes 5* (+10) 10 > 1656775438 158540 PRIVMSG #esolangs :14[[07User:Yes14]]4 10 02https://esolangs.org/w/index.php?diff=99269&oldid=99268 5* 03Yes 5* (+5) 10 < 1656775602 487062 :Yes!~Yes@c-73-1-29-188.hsd1.fl.comcast.net JOIN #esolangs * :[https://web.libera.chat] Yes < 1656775604 123985 :Yes!~Yes@c-73-1-29-188.hsd1.fl.comcast.net PRIVMSG #esolangs :hello < 1656775626 419362 :Yes!~Yes@c-73-1-29-188.hsd1.fl.comcast.net NICK :Guest5969 < 1656775652 590360 :Guest5969!~Yes@c-73-1-29-188.hsd1.fl.comcast.net PRIVMSG #esolangs :anyone online < 1656775660 725445 :Guest5969!~Yes@c-73-1-29-188.hsd1.fl.comcast.net QUIT :Client Quit < 1656775687 584958 :int-e!~noone@int-e.eu PRIVMSG #esolangs :58 seconds > 1656776280 6122 PRIVMSG #esolangs :14[[07Emmental/emmental.ml14]]4 M10 02https://esolangs.org/w/index.php?diff=99270&oldid=34449 5* 03PythonshellDebugwindow 5* (+19) 10Back < 1656776464 120247 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656776835 216704 :Koen_!~Koen@2a01:e34:ec7c:30:8da7:cb13:b8e1:fb90 QUIT :Quit: Leaving... < 1656779274 189781 :tech_exorcist!13203@user/tech-exorcist/x-0447479 QUIT :Remote host closed the connection < 1656779319 720791 :tech_exorcist!13203@user/tech-exorcist/x-0447479 JOIN #esolangs tech_exorcist :he/him - IT, EN > 1656779367 685919 PRIVMSG #esolangs :14[[07School14]]4 M10 02https://esolangs.org/w/index.php?diff=99271&oldid=88284 5* 03PythonshellDebugwindow 5* (+13) 10/* Source code */ deadlink < 1656780115 538962 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1656781089 939698 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99272&oldid=99265 5* 03PixelatedStarfish 5* (+0) 10/* Design Goals: Why Use BunnyBell? */ > 1656781180 898038 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99273&oldid=99272 5* 03PixelatedStarfish 5* (+1) 10/* Argument Tokens */ > 1656781235 69411 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99274&oldid=99273 5* 03PixelatedStarfish 5* (+0) 10/* Token Precedence */ < 1656781592 289396 :sprout!~quassel@2a02-a45f-f170-1-8d18-3573-5724-8020.fixed6.kpn.net QUIT :Ping timeout: 260 seconds < 1656781618 192443 :leah2!~leah@vuxu.org QUIT :Ping timeout: 240 seconds < 1656782303 203873 :leah2!~leah@vuxu.org JOIN #esolangs leah2 :Leah Neukirchen < 1656783217 282405 :sprout!~quassel@2a02-a467-ccd6-1-f863-1f18-5779-60c6.fixed6.kpn.net JOIN #esolangs * :sprout > 1656784242 132903 PRIVMSG #esolangs :14[[07BunnyBell14]]4 10 02https://esolangs.org/w/index.php?diff=99275&oldid=99232 5* 03PixelatedStarfish 5* (+1083) 10/* Factors in Design */ < 1656784306 154442 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656784974 250588 :sprout!~quassel@2a02-a467-ccd6-1-f863-1f18-5779-60c6.fixed6.kpn.net QUIT :Ping timeout: 268 seconds < 1656785037 981057 :int-e!~noone@int-e.eu PRIVMSG #esolangs :`? advisary < 1656785038 649358 :sprout!~quassel@2a02-a467-ccd6-1-f863-1f18-5779-60c6.fixed6.kpn.net JOIN #esolangs sprout :sprout < 1656785040 359502 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :advisary? ¯\(°​_o)/¯ < 1656785598 614136 :sprout!~quassel@2a02-a467-ccd6-1-f863-1f18-5779-60c6.fixed6.kpn.net QUIT :Ping timeout: 272 seconds < 1656786103 901035 :sprout!~quassel@2a02:a467:ccd6:1:f863:1f18:5779:60c6 JOIN #esolangs * :sprout < 1656786594 609632 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656788435 521604 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656789369 483564 :Guest33!~Guest33@pool-98-115-111-125.phlapa.fios.verizon.net JOIN #esolangs * :[https://web.libera.chat] Guest33 < 1656790069 133439 :Guest33!~Guest33@pool-98-115-111-125.phlapa.fios.verizon.net QUIT :Quit: Client closed > 1656790864 320502 PRIVMSG #esolangs :14[[07BunnyBell14]]4 10 02https://esolangs.org/w/index.php?diff=99276&oldid=99275 5* 03PixelatedStarfish 5* (+275) 10/* Factors in Design */ < 1656791645 886240 :sprout!~quassel@2a02:a467:ccd6:1:f863:1f18:5779:60c6 QUIT :Ping timeout: 255 seconds < 1656791915 322955 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656792295 443974 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656792453 912742 :sprout!~quassel@2a02:a467:ccd6:1:f863:1f18:5779:60c6 JOIN #esolangs sprout :sprout < 1656792554 866285 :imode!sid553797@user/imode PRIVMSG #esolangs :is it possible to encode a "restart" instruction in BF somehow. < 1656792577 71833 :imode!sid553797@user/imode PRIVMSG #esolangs :like, the BF equivalent of "set program counter to 0" somewhere in the middle of the execution. < 1656792603 983959 :imode!sid553797@user/imode PRIVMSG #esolangs :I don't think it's possible without building a pseudo-interpreter structure. < 1656792629 227167 :imode!sid553797@user/imode PRIVMSG #esolangs :or have some kind of check/loop signalling and have your program wrapped in a big ol' loop. < 1656792654 5882 :imode!sid553797@user/imode PRIVMSG #esolangs :same for a "halt" instruction. < 1656792802 80651 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Hmm. I feel like I've done something like this before, but in what context... < 1656792834 245553 :imode!sid553797@user/imode PRIVMSG #esolangs :trying to determine what could add expressive power vs. being trivial to encode. < 1656792865 352319 :imode!sid553797@user/imode PRIVMSG #esolangs :working on a VM with something BF-like and I have like, two instructions left before I hit a near-perfect 4 bits. < 1656792873 810661 :imode!sid553797@user/imode PRIVMSG #esolangs :per instruction, that is. > 1656793558 124737 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99277&oldid=99274 5* 03PixelatedStarfish 5* (+105) 10/* Useful Operators */ < 1656793573 381307 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1656793614 196864 :imode!sid553797@user/imode PRIVMSG #esolangs :I don't think adding arbitrary restarts will gain any expressive power, because I can see how, prior to every loop condition, you could encode a fall-through-to-the-bottom-or-top check. > 1656793617 386617 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99278&oldid=99277 5* 03PixelatedStarfish 5* (+0) 10/* Useful Operators */ < 1656793999 394545 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1656794096 67774 :int-e!~noone@int-e.eu PRIVMSG #esolangs :imode: It's not trivial to encode either of these. Here's an attempt at exit(): http://paste.debian.net/1245994/ < 1656794112 706290 :int-e!~noone@int-e.eu PRIVMSG #esolangs :It is "just a substitution". < 1656794126 598801 :int-e!~noone@int-e.eu PRIVMSG #esolangs :But not exactly a simple one. < 1656794166 711594 :imode!sid553797@user/imode PRIVMSG #esolangs :trivial wasn't the right word. < 1656794198 530999 :imode!sid553797@user/imode PRIVMSG #esolangs :just the fact that it could be encoded by substitution means that the instruction doesn't add expressive power. < 1656794205 6730 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(there must be a more clever way to do this) < 1656794228 705098 :int-e!~noone@int-e.eu PRIVMSG #esolangs :yeah which is why I sketched this < 1656794242 741995 :imode!sid553797@user/imode PRIVMSG #esolangs :like, "I can't do this in BF without interpreting another language" and "I can do this via substitution" has a gradient between it, I think. > 1656794250 977539 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99279&oldid=99278 5* 03PixelatedStarfish 5* (+42) 10/* Useful Operators */ < 1656794259 157082 :imode!sid553797@user/imode PRIVMSG #esolangs :the weirder the instruction the weirder the encoding. > 1656794285 168667 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99280&oldid=99279 5* 03PixelatedStarfish 5* (+38) 10/* Useful Operators */ > 1656794317 97843 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99281&oldid=99280 5* 03PixelatedStarfish 5* (+38) 10/* Useful Operators */ < 1656794325 475058 :int-e!~noone@int-e.eu PRIVMSG #esolangs :BF is TC though, so what would constitute an increase of expressive power if mere convenience isn't enough? < 1656794356 721417 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Add an RNG? :) < 1656794410 293980 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Add a syscall instruction (parameters taken from the tape)? < 1656794416 959575 :imode!sid553797@user/imode PRIVMSG #esolangs :the convenience gradient is what I'm interested in. < 1656794511 855827 :imode!sid553797@user/imode PRIVMSG #esolangs :here's another thought: what hypothetical instructions can't be encoded as substitutions. < 1656794533 809398 :imode!sid553797@user/imode PRIVMSG #esolangs :linear substitutions. < 1656794657 209524 :imode!sid553797@user/imode PRIVMSG #esolangs :https://m.youtube.com/watch?v=43XaZEn2aLc > 1656794673 94992 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99282&oldid=99281 5* 03PixelatedStarfish 5* (+39) 10/* Data Types */ < 1656794676 908792 :int-e!~noone@int-e.eu PRIVMSG #esolangs :`? 43XaZEn2aLc < 1656794678 795814 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :43XaZEn2aLc? ¯\(°​_o)/¯ < 1656794691 812785 :int-e!~noone@int-e.eu PRIVMSG #esolangs :`' < 1656794692 767567 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :18) IN AN ALTERNATE UNIVERSE: In an alternate universe, I would say "In an alternate universe, ehird has taste" > 1656794827 312133 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99283&oldid=99282 5* 03PixelatedStarfish 5* (+63) 10/* Data Types */ > 1656795053 208813 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99284&oldid=99283 5* 03PixelatedStarfish 5* (+85) 10/* Data Types */ < 1656795158 198272 :leah2!~leah@vuxu.org QUIT :Ping timeout: 240 seconds > 1656795242 205784 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99285&oldid=99284 5* 03PixelatedStarfish 5* (+5) 10/* Declaring Variables: The Refer Operator (&) */ < 1656795302 726607 :simcop2387!~simcop238@perlbot/patrician/simcop2387 QUIT :Read error: Connection reset by peer < 1656795318 226046 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot QUIT :Ping timeout: 240 seconds > 1656795388 455247 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99286&oldid=99285 5* 03PixelatedStarfish 5* (-65) 10/* The Basics: Functions and Calls */ > 1656795415 760874 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99287&oldid=99286 5* 03PixelatedStarfish 5* (-4) 10/* The Basics: Functions and Calls */ > 1656795444 305064 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99288&oldid=99287 5* 03PixelatedStarfish 5* (+3) 10/* Specifying Function Input Types */ < 1656795453 186617 :simcop2387!~simcop238@perlbot/patrician/simcop2387 JOIN #esolangs simcop2387 :ZNC - https://znc.in > 1656795472 643345 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99289&oldid=99288 5* 03PixelatedStarfish 5* (+8) 10/* Specifying Function Input Types */ > 1656795504 903816 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99290&oldid=99289 5* 03PixelatedStarfish 5* (+15) 10/* Specifying Function Input Types */ > 1656795520 986769 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99291&oldid=99290 5* 03PixelatedStarfish 5* (+9) 10/* Specifying Function Input Types */ < 1656795573 279607 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot JOIN #esolangs perlbot :ZNC - https://znc.in < 1656795623 933463 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1656795686 538341 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99292&oldid=99291 5* 03PixelatedStarfish 5* (-7) 10/* Overloading */ < 1656795781 661511 :leah2!~leah@vuxu.org JOIN #esolangs leah2 :Leah Neukirchen > 1656796725 64395 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99293&oldid=99292 5* 03PixelatedStarfish 5* (+3) 10/* Structs: Defining a Data Type */ > 1656797361 144865 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99294&oldid=99293 5* 03PixelatedStarfish 5* (+2) 10/* Macros */ < 1656797565 556150 :leah2!~leah@vuxu.org QUIT :Ping timeout: 260 seconds > 1656797617 173408 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99295&oldid=99294 5* 03PixelatedStarfish 5* (-6) 10/* Use with Constants */ > 1656798058 653493 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99296&oldid=99295 5* 03PixelatedStarfish 5* (+174) 10/* Commands */ > 1656798093 433684 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99297&oldid=99296 5* 03PixelatedStarfish 5* (+7) 10/* Commands */ < 1656798539 573097 :leah2!~leah@vuxu.org JOIN #esolangs leah2 :Leah Neukirchen > 1656798906 673571 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99298&oldid=99297 5* 03PixelatedStarfish 5* (+0) 10/* How to use Includes */ > 1656798925 280397 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99299&oldid=99298 5* 03PixelatedStarfish 5* (+0) 10/* Libraries */ > 1656799023 612384 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99300&oldid=99299 5* 03PixelatedStarfish 5* (+0) 10/* On Cyclic File References */ > 1656799075 268879 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99301&oldid=99300 5* 03PixelatedStarfish 5* (+35) 10/* Math */ > 1656799116 543644 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99302&oldid=99301 5* 03PixelatedStarfish 5* (+84) 10/* Collections */ > 1656799136 691379 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99303&oldid=99302 5* 03PixelatedStarfish 5* (+1) 10/* Collections */ > 1656799311 628265 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99304&oldid=99303 5* 03PixelatedStarfish 5* (+78) 10/* Proof by Translation to bf */ < 1656799322 502587 :tech_exorcist!13203@user/tech-exorcist/x-0447479 QUIT :Quit: Disconnecting > 1656799325 742865 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99305&oldid=99304 5* 03PixelatedStarfish 5* (+1) 10/* Proof by Translation to bf */ > 1656799395 997862 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99306&oldid=99305 5* 03PixelatedStarfish 5* (+0) 10/* Proof by Translation to bf */ > 1656799425 514740 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99307&oldid=99306 5* 03PixelatedStarfish 5* (-379) 10/* Language Considerations */ > 1656799519 169587 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99308&oldid=99307 5* 03PixelatedStarfish 5* (-36) 10/* Test Cases */ > 1656799631 631863 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99309&oldid=99308 5* 03PixelatedStarfish 5* (-10) 10/* Assignment */ > 1656799662 588406 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99310&oldid=99309 5* 03PixelatedStarfish 5* (+20) 10/* Array */ > 1656799697 393992 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99311&oldid=99310 5* 03PixelatedStarfish 5* (+0) 10/* Bf */ > 1656799728 578005 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99312&oldid=99311 5* 03PixelatedStarfish 5* (-211) 10/* Bit */ > 1656799939 879958 PRIVMSG #esolangs :14[[07Did I Ask14]]4 N10 02https://esolangs.org/w/index.php?oldid=99313 5* 03Yes 5* (+178) 10Created page with "{{Stub}} Did I Ask was an esolang made by [[User:Yes]] in 2022 == Commands ==
 Declare var n1 with value n2    n1+n2=(n1+n2) If true, return true            Did I Ask 
" > 1656799956 612443 PRIVMSG #esolangs :14[[07User:Yes14]]4 10 02https://esolangs.org/w/index.php?diff=99314&oldid=99269 5* 03Yes 5* (+24) 10 > 1656799968 733857 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99315&oldid=99312 5* 03PixelatedStarfish 5* (+106) 10/* Bug */ > 1656799979 348707 PRIVMSG #esolangs :14[[07lang14]]4 10 02https://esolangs.org/w/index.php?diff=99316&oldid=99264 5* 03Yes 5* (-2) 10 > 1656800000 497581 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99317&oldid=99315 5* 03PixelatedStarfish 5* (-28) 10/* Call */ > 1656800005 412164 PRIVMSG #esolangs :14[[07LISPS14]]4 10 02https://esolangs.org/w/index.php?diff=99318&oldid=99267 5* 03Yes 5* (-4) 10 > 1656800038 258431 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99319&oldid=99317 5* 03PixelatedStarfish 5* (+7) 10/* Console */ > 1656800077 573231 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99320&oldid=99319 5* 03PixelatedStarfish 5* (-2) 10/* Error */ > 1656800343 105816 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99321&oldid=99320 5* 03PixelatedStarfish 5* (+266) 10/* Esolang */ > 1656800392 857414 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99322&oldid=99321 5* 03PixelatedStarfish 5* (+75) 10/* First Class */ > 1656800414 331329 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99323&oldid=99322 5* 03PixelatedStarfish 5* (+7) 10/* Function */ > 1656800447 187091 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99324&oldid=99323 5* 03PixelatedStarfish 5* (+4) 10/* Heap */ > 1656800467 683443 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99325&oldid=99324 5* 03PixelatedStarfish 5* (-132) 10/* Integer */ < 1656800555 887694 :sprout!~quassel@2a02:a467:ccd6:1:f863:1f18:5779:60c6 QUIT :Ping timeout: 255 seconds > 1656800619 920830 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99326&oldid=99325 5* 03PixelatedStarfish 5* (+83) 10/* Stack */ > 1656800630 346046 PRIVMSG #esolangs :14[[07Esolang talk:Categorization14]]4 10 02https://esolangs.org/w/index.php?diff=99327&oldid=98856 5* 03Yes 5* (+273) 10/* Category for implemented stubs */ new section > 1656800690 615481 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99328&oldid=99326 5* 03PixelatedStarfish 5* (+21) 10/* Stack Overflow */ > 1656800705 40816 PRIVMSG #esolangs :14[[07Esolang talk:Categorization14]]4 M10 02https://esolangs.org/w/index.php?diff=99329&oldid=99327 5* 03Yes 5* (+19) 10 > 1656800730 458893 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99330&oldid=99328 5* 03PixelatedStarfish 5* (-12) 10/* Token */ > 1656800888 918077 PRIVMSG #esolangs :14[[07User:Yes14]]4 10 02https://esolangs.org/w/index.php?diff=99331&oldid=99314 5* 03Yes 5* (+168) 10 > 1656801003 391007 PRIVMSG #esolangs :14[[07BunnyBell Documentation14]]4 10 02https://esolangs.org/w/index.php?diff=99332&oldid=99330 5* 03PixelatedStarfish 5* (+0) 10/* Turing Complete */ > 1656801116 319209 PRIVMSG #esolangs :14[[07BunnyBell14]]4 10 02https://esolangs.org/w/index.php?diff=99333&oldid=99276 5* 03PixelatedStarfish 5* (+40) 10/* Influences: Everything is Stolen from other Languages */ > 1656801196 730228 PRIVMSG #esolangs :14[[07Esolang talk:Categorization14]]4 10 02https://esolangs.org/w/index.php?diff=99334&oldid=99329 5* 03Yes 5* (+44) 10 > 1656801248 415054 PRIVMSG #esolangs :14[[07BunnyBell14]]4 10 02https://esolangs.org/w/index.php?diff=99335&oldid=99333 5* 03PixelatedStarfish 5* (-24) 10/* Influences: Everything is Stolen from other Languages */ < 1656801662 229719 :sprout!~quassel@2a02-a467-ccd6-1-f863-1f18-5779-60c6.fixed6.kpn.net JOIN #esolangs * :sprout < 1656802097 858431 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Remote host closed the connection < 1656802119 507501 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse < 1656804551 911874 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 255 seconds < 1656804635 731337 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1656805758 261950 :sprout!~quassel@2a02-a467-ccd6-1-f863-1f18-5779-60c6.fixed6.kpn.net QUIT :Ping timeout: 264 seconds