00:00:04 -!- Lord_of_Life has quit (*.net *.split). 00:00:04 -!- perlbot has quit (*.net *.split). 00:00:04 -!- citrons has quit (*.net *.split). 00:00:05 -!- lambdabot has quit (*.net *.split). 00:00:25 -!- citrons has joined. 00:01:56 -!- Lord_of_Life has joined. 00:02:07 -!- perlbot has joined. 00:03:03 [[Six instruction language :)]] M https://esolangs.org/w/index.php?diff=99230&oldid=99190 * PythonshellDebugwindow * (+49) This language seems underspecified given the example 00:03:20 -!- lambdabot has joined. 01:00:59 -!- Hooloovoo has quit (Ping timeout: 255 seconds). 01:01:12 -!- Hoolootwo has joined. 01:18:12 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99231&oldid=99219 * PixelatedStarfish * (+0) 01:27:29 hmm 01:27:40 pforth only requires input and output 01:27:45 brainfuck has , and . 01:27:52 can you compile pforth to brainfuck? 01:28:22 and if so, how painful would that be? 01:50:34 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99232&oldid=99231 * PixelatedStarfish * (+42) /* On First Class Functions */ 02:05:13 pforth only requires stdin and stdout? 02:30:38 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?) 02:55:28 imode: it only requires charIn and charOut 02:55:33 so, yes 02:55:42 hardcore. 02:55:48 obviously you'll be missing some functionality, but those are the "hard" requirements 02:55:57 Sgeo: no, and yes. 02:56:35 the ease of porting to BF is dependent on whether or not pforth assumes a von neumann or harvard architecture. 02:56:43 BF is harvard. 02:57:47 cooperative multitasking is literally "jump to the next task" or "jump to the scheduler" manually. 02:57:52 you'd have to get rid of or restrict jumps. 03:01:46 imode: it's an interpreter 03:02:05 but also, by "porting", we mean "compiling the C code into equivalent brainfuck" 03:02:51 so long as it doesn't rely on jumping to dynamic addresses, should be fine. 03:03:02 there are plenty of C to BF compilers, why not give it a shot? 03:03:09 define "dynamic addresses"? 03:04:03 if you mean function pointers... well, why wouldn't those work? 03:04:12 sure, you'd need jump tables, like you do in wasm 03:04:24 but they can be completely defined at compile-time 03:04:51 forth has a dictionary full of cells, some of which point to words, some don't. 03:04:54 (like you do in wasm) 03:05:13 if you wanna compile a word, you need to build it out of existing addresses. 03:05:24 guess it could work. 03:05:26 go for it. 03:42:05 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) 03:45:32 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. 03:47:55 Android cell phones and iPhone also does not seem to have a command-line interface 04:28:11 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99233&oldid=99196 * PixelatedStarfish * (+13) /* Token Precedence */ 04:42:05 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99234&oldid=99233 * PixelatedStarfish * (+89) /* Useful Operators */ 04:50:18 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99235&oldid=99234 * PixelatedStarfish * (+89) /* Argument Tokens */ 04:52:56 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99236&oldid=99235 * PixelatedStarfish * (+1) /* Hello World */ 04:54:07 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99237&oldid=99236 * PixelatedStarfish * (+1) /* Truth Machine */ 04:55:51 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99238&oldid=99237 * PixelatedStarfish * (+2) /* Truth Machine */ 04:56:50 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99239&oldid=99238 * PixelatedStarfish * (+1) /* Cat (Echo) */ 04:57:41 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99240&oldid=99239 * PixelatedStarfish * (-93) /* Useful Operators */ 04:58:36 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99241&oldid=99240 * PixelatedStarfish * (+63) /* Declaring Variables: The Refer Operator (&) */ 04:58:52 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99242&oldid=99241 * PixelatedStarfish * (+0) /* Buckets, Indexing, and Nesting */ 04:59:14 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99243&oldid=99242 * PixelatedStarfish * (+1) /* Specifying Function Input Types */ 04:59:58 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99244&oldid=99243 * PixelatedStarfish * (+6) /* Overloading */ 05:14:12 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99245&oldid=99244 * PixelatedStarfish * (-1) /* Useful Operators */ 05:16:33 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99246&oldid=99245 * PixelatedStarfish * (+0) /* Structs: Defining a Data Type */ 05:17:04 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99247&oldid=99246 * PixelatedStarfish * (+0) /* Use with Constants */ 05:19:02 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99248&oldid=99247 * PixelatedStarfish * (-10) /* Commands */ 05:20:02 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99249&oldid=99248 * PixelatedStarfish * (+0) /* Proof by Translation to bf */ 05:56:54 -!- Sgeo has quit (Read error: Connection reset by peer). 06:42:39 [[Special:Log/newusers]] create * Presauced * New user account 06:45:10 -!- impomatic has joined. 06:52:09 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=99250&oldid=99221 * Presauced * (+175) 06:55:06 -!- impomatic has quit (Quit: impomatic). 06:55:14 -!- tromp has joined. 06:55:27 -!- impomatic has joined. 06:59:38 -!- impomatic has quit (Client Quit). 06:59:59 -!- impomatic has joined. 07:15:59 [[Matrix (data structure)]] https://esolangs.org/w/index.php?diff=99251&oldid=88005 * Peter * (+1) 07:24:24 -!- Koen has joined. 07:32:17 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 07:33:25 -!- tromp has joined. 07:35:17 -!- impomatic has quit (Quit: impomatic). 07:36:59 -!- moony has quit (Quit: leaving). 08:17:03 [[Deadfish]] https://esolangs.org/w/index.php?diff=99252&oldid=98772 * Presauced * (+297) /* C */ 08:28:45 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 09:25:54 -!- Koen has quit (Remote host closed the connection). 09:29:43 -!- tech_exorcist has joined. 09:31:55 `learn The password of the month is redundant but not distributed. 09:32:00 Relearned 'password': The password of the month is redundant but not distributed. 09:34:26 . o O ( Also a bit uninspired. ) 09:37:15 -!- Koen has joined. 09:47:24 -!- sprout has joined. 09:52:35 -!- tromp has joined. 10:44:16 -!- sprout has quit (Ping timeout: 272 seconds). 11:29:24 -!- sprout has joined. 11:37:04 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 11:40:27 -!- tromp has joined. 11:46:55 [[Koopas are Involved]] https://esolangs.org/w/index.php?diff=99253&oldid=99212 * Oshaboy * (+274) Added Truth Machine 12:13:19 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 12:19:44 -!- tromp has joined. 12:40:12 [[lang]] https://esolangs.org/w/index.php?diff=99254&oldid=99228 * Yes * (+158) 12:41:24 [[lang]] https://esolangs.org/w/index.php?diff=99255&oldid=99254 * Yes * (+19) 12:42:18 [[lang]] https://esolangs.org/w/index.php?diff=99256&oldid=99255 * Yes * (+8) 12:42:30 [[lang]] https://esolangs.org/w/index.php?diff=99257&oldid=99256 * Yes * (+13) 12:47:47 -!- Koen has quit (Remote host closed the connection). 12:54:37 -!- Koen has joined. 12:54:38 -!- Koen_ has joined. 12:59:12 -!- Koen has quit (Ping timeout: 260 seconds). 13:27:52 -!- sprout has quit (Ping timeout: 248 seconds). 13:31:21 -!- sprout has joined. 13:45:22 [[lang]] M https://esolangs.org/w/index.php?diff=99258&oldid=99257 * PythonshellDebugwindow * (+107) Add categories 13:46:28 what's a good, fairly complete C-to-brainfuck compiler? 14:09:36 There was that ELVM thing. But I don't know if it's any good, and "fairly complete" might be a stretch. 14:09:50 https://github.com/shinh/elvm anyway. 14:37:07 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 14:57:05 [[!lyriclydemoteestablishcommunism!]] M https://esolangs.org/w/index.php?diff=99259&oldid=90604 * Yes * (+164) 15:02:35 [[!lyriclydemoteestablishcommunism!]] https://esolangs.org/w/index.php?diff=99260&oldid=99259 * Yes * (-2) 15:04:30 [[User:Yes]] https://esolangs.org/w/index.php?diff=99261&oldid=99226 * Yes * (+63) 15:04:49 [[User:Yes]] https://esolangs.org/w/index.php?diff=99262&oldid=99261 * Yes * (+21) 15:05:10 [[lang]] https://esolangs.org/w/index.php?diff=99263&oldid=99258 * Yes * (-17) 15:05:39 [[lang]] https://esolangs.org/w/index.php?diff=99264&oldid=99263 * Yes * (+18) 15:06:52 huh 15:06:57 it is very non-optimizing 15:07:28 unsurprising 15:08:09 optimizing brainfuck code is about as attractive as riding a dead horse, except for really simple code and golfing, which can be fun. 15:11:07 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. 15:11:30 well yeah... 15:11:30 And with another slowdown from awful arithmetic, of course. 15:15:46 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99265&oldid=99249 * PixelatedStarfish * (+7) /* Commands */ 15:16:02 [[Braindead]] M https://esolangs.org/w/index.php?diff=99266&oldid=98237 * PythonshellDebugwindow * (+77) Stub, add categories 15:23:29 [[LISPS]] N https://esolangs.org/w/index.php?oldid=99267 * Yes * (+749) Created 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..." 15:23:50 [[User:Yes]] https://esolangs.org/w/index.php?diff=99268&oldid=99262 * Yes * (+10) 15:23:58 [[User:Yes]] https://esolangs.org/w/index.php?diff=99269&oldid=99268 * Yes * (+5) 15:26:42 -!- Yes has joined. 15:26:44 hello 15:27:06 -!- Yes has changed nick to Guest5969. 15:27:32 anyone online 15:27:40 -!- Guest5969 has quit (Client Quit). 15:28:07 58 seconds 15:38:00 [[Emmental/emmental.ml]] M https://esolangs.org/w/index.php?diff=99270&oldid=34449 * PythonshellDebugwindow * (+19) Back 15:41:04 -!- tromp has joined. 15:47:15 -!- Koen_ has quit (Quit: Leaving...). 16:27:54 -!- tech_exorcist has quit (Remote host closed the connection). 16:28:39 -!- tech_exorcist has joined. 16:29:27 [[School]] M https://esolangs.org/w/index.php?diff=99271&oldid=88284 * PythonshellDebugwindow * (+13) /* Source code */ deadlink 16:41:55 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 16:58:09 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99272&oldid=99265 * PixelatedStarfish * (+0) /* Design Goals: Why Use BunnyBell? */ 16:59:40 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99273&oldid=99272 * PixelatedStarfish * (+1) /* Argument Tokens */ 17:00:35 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99274&oldid=99273 * PixelatedStarfish * (+0) /* Token Precedence */ 17:06:32 -!- sprout has quit (Ping timeout: 260 seconds). 17:06:58 -!- leah2 has quit (Ping timeout: 240 seconds). 17:18:23 -!- leah2 has joined. 17:33:37 -!- sprout has joined. 17:50:42 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99275&oldid=99232 * PixelatedStarfish * (+1083) /* Factors in Design */ 17:51:46 -!- tromp has joined. 18:02:54 -!- sprout has quit (Ping timeout: 268 seconds). 18:03:57 `? advisary 18:03:58 -!- sprout has joined. 18:04:00 advisary? ¯\(°​_o)/¯ 18:13:18 -!- sprout has quit (Ping timeout: 272 seconds). 18:21:43 -!- sprout has joined. 18:29:54 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 19:00:35 -!- tromp has joined. 19:16:09 -!- Guest33 has joined. 19:27:49 -!- Guest33 has quit (Quit: Client closed). 19:41:04 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99276&oldid=99275 * PixelatedStarfish * (+275) /* Factors in Design */ 19:54:05 -!- sprout has quit (Ping timeout: 255 seconds). 19:58:35 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 20:04:55 -!- tromp has joined. 20:07:33 -!- sprout has joined. 20:09:14 is it possible to encode a "restart" instruction in BF somehow. 20:09:37 like, the BF equivalent of "set program counter to 0" somewhere in the middle of the execution. 20:10:03 I don't think it's possible without building a pseudo-interpreter structure. 20:10:29 or have some kind of check/loop signalling and have your program wrapped in a big ol' loop. 20:10:54 same for a "halt" instruction. 20:13:22 Hmm. I feel like I've done something like this before, but in what context... 20:13:54 trying to determine what could add expressive power vs. being trivial to encode. 20:14:25 working on a VM with something BF-like and I have like, two instructions left before I hit a near-perfect 4 bits. 20:14:33 per instruction, that is. 20:25:58 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99277&oldid=99274 * PixelatedStarfish * (+105) /* Useful Operators */ 20:26:13 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 20:26:54 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. 20:26:57 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99278&oldid=99277 * PixelatedStarfish * (+0) /* Useful Operators */ 20:33:19 -!- tromp has joined. 20:34:56 imode: It's not trivial to encode either of these. Here's an attempt at exit(): http://paste.debian.net/1245994/ 20:35:12 It is "just a substitution". 20:35:26 But not exactly a simple one. 20:36:06 trivial wasn't the right word. 20:36:38 just the fact that it could be encoded by substitution means that the instruction doesn't add expressive power. 20:36:45 (there must be a more clever way to do this) 20:37:08 yeah which is why I sketched this 20:37:22 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. 20:37:30 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99279&oldid=99278 * PixelatedStarfish * (+42) /* Useful Operators */ 20:37:39 the weirder the instruction the weirder the encoding. 20:38:05 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99280&oldid=99279 * PixelatedStarfish * (+38) /* Useful Operators */ 20:38:37 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99281&oldid=99280 * PixelatedStarfish * (+38) /* Useful Operators */ 20:38:45 BF is TC though, so what would constitute an increase of expressive power if mere convenience isn't enough? 20:39:16 Add an RNG? :) 20:40:10 Add a syscall instruction (parameters taken from the tape)? 20:40:16 the convenience gradient is what I'm interested in. 20:41:51 here's another thought: what hypothetical instructions can't be encoded as substitutions. 20:42:13 linear substitutions. 20:44:17 https://m.youtube.com/watch?v=43XaZEn2aLc 20:44:33 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99282&oldid=99281 * PixelatedStarfish * (+39) /* Data Types */ 20:44:36 `? 43XaZEn2aLc 20:44:38 43XaZEn2aLc? ¯\(°​_o)/¯ 20:44:51 `' 20:44:52 18) IN AN ALTERNATE UNIVERSE: In an alternate universe, I would say "In an alternate universe, ehird has taste" 20:47:07 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99283&oldid=99282 * PixelatedStarfish * (+63) /* Data Types */ 20:50:53 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99284&oldid=99283 * PixelatedStarfish * (+85) /* Data Types */ 20:52:38 -!- leah2 has quit (Ping timeout: 240 seconds). 20:54:02 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99285&oldid=99284 * PixelatedStarfish * (+5) /* Declaring Variables: The Refer Operator (&) */ 20:55:02 -!- simcop2387 has quit (Read error: Connection reset by peer). 20:55:18 -!- perlbot has quit (Ping timeout: 240 seconds). 20:56:28 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99286&oldid=99285 * PixelatedStarfish * (-65) /* The Basics: Functions and Calls */ 20:56:55 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99287&oldid=99286 * PixelatedStarfish * (-4) /* The Basics: Functions and Calls */ 20:57:24 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99288&oldid=99287 * PixelatedStarfish * (+3) /* Specifying Function Input Types */ 20:57:33 -!- simcop2387 has joined. 20:57:52 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99289&oldid=99288 * PixelatedStarfish * (+8) /* Specifying Function Input Types */ 20:58:24 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99290&oldid=99289 * PixelatedStarfish * (+15) /* Specifying Function Input Types */ 20:58:40 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99291&oldid=99290 * PixelatedStarfish * (+9) /* Specifying Function Input Types */ 20:59:33 -!- perlbot has joined. 21:00:23 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 21:01:26 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99292&oldid=99291 * PixelatedStarfish * (-7) /* Overloading */ 21:03:01 -!- leah2 has joined. 21:18:45 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99293&oldid=99292 * PixelatedStarfish * (+3) /* Structs: Defining a Data Type */ 21:29:21 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99294&oldid=99293 * PixelatedStarfish * (+2) /* Macros */ 21:32:45 -!- leah2 has quit (Ping timeout: 260 seconds). 21:33:37 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99295&oldid=99294 * PixelatedStarfish * (-6) /* Use with Constants */ 21:40:58 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99296&oldid=99295 * PixelatedStarfish * (+174) /* Commands */ 21:41:33 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99297&oldid=99296 * PixelatedStarfish * (+7) /* Commands */ 21:48:59 -!- leah2 has joined. 21:55:06 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99298&oldid=99297 * PixelatedStarfish * (+0) /* How to use Includes */ 21:55:25 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99299&oldid=99298 * PixelatedStarfish * (+0) /* Libraries */ 21:57:03 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99300&oldid=99299 * PixelatedStarfish * (+0) /* On Cyclic File References */ 21:57:55 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99301&oldid=99300 * PixelatedStarfish * (+35) /* Math */ 21:58:36 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99302&oldid=99301 * PixelatedStarfish * (+84) /* Collections */ 21:58:56 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99303&oldid=99302 * PixelatedStarfish * (+1) /* Collections */ 22:01:51 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99304&oldid=99303 * PixelatedStarfish * (+78) /* Proof by Translation to bf */ 22:02:02 -!- tech_exorcist has quit (Quit: Disconnecting). 22:02:05 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99305&oldid=99304 * PixelatedStarfish * (+1) /* Proof by Translation to bf */ 22:03:15 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99306&oldid=99305 * PixelatedStarfish * (+0) /* Proof by Translation to bf */ 22:03:45 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99307&oldid=99306 * PixelatedStarfish * (-379) /* Language Considerations */ 22:05:19 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99308&oldid=99307 * PixelatedStarfish * (-36) /* Test Cases */ 22:07:11 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99309&oldid=99308 * PixelatedStarfish * (-10) /* Assignment */ 22:07:42 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99310&oldid=99309 * PixelatedStarfish * (+20) /* Array */ 22:08:17 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99311&oldid=99310 * PixelatedStarfish * (+0) /* Bf */ 22:08:48 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99312&oldid=99311 * PixelatedStarfish * (-211) /* Bit */ 22:12:19 [[Did I Ask]] N https://esolangs.org/w/index.php?oldid=99313 * Yes * (+178) Created 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 
" 22:12:36 [[User:Yes]] https://esolangs.org/w/index.php?diff=99314&oldid=99269 * Yes * (+24) 22:12:48 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99315&oldid=99312 * PixelatedStarfish * (+106) /* Bug */ 22:12:59 [[lang]] https://esolangs.org/w/index.php?diff=99316&oldid=99264 * Yes * (-2) 22:13:20 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99317&oldid=99315 * PixelatedStarfish * (-28) /* Call */ 22:13:25 [[LISPS]] https://esolangs.org/w/index.php?diff=99318&oldid=99267 * Yes * (-4) 22:13:58 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99319&oldid=99317 * PixelatedStarfish * (+7) /* Console */ 22:14:37 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99320&oldid=99319 * PixelatedStarfish * (-2) /* Error */ 22:19:03 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99321&oldid=99320 * PixelatedStarfish * (+266) /* Esolang */ 22:19:52 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99322&oldid=99321 * PixelatedStarfish * (+75) /* First Class */ 22:20:14 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99323&oldid=99322 * PixelatedStarfish * (+7) /* Function */ 22:20:47 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99324&oldid=99323 * PixelatedStarfish * (+4) /* Heap */ 22:21:07 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99325&oldid=99324 * PixelatedStarfish * (-132) /* Integer */ 22:22:35 -!- sprout has quit (Ping timeout: 255 seconds). 22:23:39 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99326&oldid=99325 * PixelatedStarfish * (+83) /* Stack */ 22:23:50 [[Esolang talk:Categorization]] https://esolangs.org/w/index.php?diff=99327&oldid=98856 * Yes * (+273) /* Category for implemented stubs */ new section 22:24:50 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99328&oldid=99326 * PixelatedStarfish * (+21) /* Stack Overflow */ 22:25:05 [[Esolang talk:Categorization]] M https://esolangs.org/w/index.php?diff=99329&oldid=99327 * Yes * (+19) 22:25:30 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99330&oldid=99328 * PixelatedStarfish * (-12) /* Token */ 22:28:08 [[User:Yes]] https://esolangs.org/w/index.php?diff=99331&oldid=99314 * Yes * (+168) 22:30:03 [[BunnyBell Documentation]] https://esolangs.org/w/index.php?diff=99332&oldid=99330 * PixelatedStarfish * (+0) /* Turing Complete */ 22:31:56 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99333&oldid=99276 * PixelatedStarfish * (+40) /* Influences: Everything is Stolen from other Languages */ 22:33:16 [[Esolang talk:Categorization]] https://esolangs.org/w/index.php?diff=99334&oldid=99329 * Yes * (+44) 22:34:08 [[BunnyBell]] https://esolangs.org/w/index.php?diff=99335&oldid=99333 * PixelatedStarfish * (-24) /* Influences: Everything is Stolen from other Languages */ 22:41:02 -!- sprout has joined. 22:48:17 -!- chiselfuse has quit (Remote host closed the connection). 22:48:39 -!- chiselfuse has joined. 23:29:11 -!- Lord_of_Life has quit (Ping timeout: 255 seconds). 23:30:35 -!- Lord_of_Life has joined. 23:49:18 -!- sprout has quit (Ping timeout: 264 seconds).