annotate interps/egobf/src/wib.b @ 12500:e48c08805365 draft default tip

<b_jonas> ` learn \'The password of the month is Cthulhuquagdonic Mothraquagdonic Narwhalicorn.\' # https://logs.esolangs.org/libera-esolangs/2024-04.html#lKE Infinite craft
author HackEso <hackeso@esolangs.org>
date Wed, 01 May 2024 06:39:10 +0000
parents 859f9b4339e6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
996
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
1 #!@prefix@/bin/egobfi8
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
2 [
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
3 Written In Brainfuck (wib) v0.96
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
4 Brainfuck to C translator by Mats Linander
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
5
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
6 This program reads brainfuck sourcecode from stdin, translates it into c code
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
7 and outputs it to stdout. Wib assumes that EOF == -1.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
8
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
9 Windows based c compilers may have problems compiling code generated by wib
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
10 as it produces unix style newlines ('\n'==0x0a).
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
11
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
12
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
13 Changelog
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
14
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
15 v0.96: 2003-05-??
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
16 * New itoa routine
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
17 * Some tinkering to reduce size
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
18 v0.95: 2003-05-03
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
19 * Bugfix. Wib said "++*p" where it should have been "--*p".
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
20 v0.94: 2003-04-22
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
21 * Wib is now officially an optimizing translator, a series of n '+' now
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
22 produces an output of *p+=n;\n. The same goes for '-'.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
23 v0.93: 2002-08-22
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
24 * Removed all - that were immediately followed by + and vice versa.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
25 v0.92: 2002-08-21
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
26 * Changed the output for dots, EOF should be EOF and nothing else.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
27 AFAIK this means wib follows the spec.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
28 * Made wib assume EOF==EOF&&EOF!='\0'
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
29 * Put this stuff within brackets. Since *p is always zero at this point,
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
30 the loop will never be entered and any chars can be used here.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
31 * Changed the GPL copyright statement to the ordinary one, including special
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
32 chars.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
33 v0.91: 2002-05-23
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
34 * Added the GPL license statement thingie
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
35 v0.90: 2002-05-20
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
36 * Wib now outputs 'if((*p=getchar())==EOF)*p=0;\n' when a dot is read
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
37 Noticed that almost every other bf compiler does it so why not mine?
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
38 v0.80: 2002-05-19
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
39 * First working version
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
40
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
41
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
42 Copyright (C) 2002, 2003, 2004 Mats Linander
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
43
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
44 This program is free software; you can redistribute it and/or modify
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
45 it under the terms of the GNU General Public License as published by
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
46 the Free Software Foundation; either version 2 of the License, or
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
47 (at your option) any later version.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
48
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
49 This program is distributed in the hope that it will be useful,
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
50 but WITHOUT ANY WARRANTY; without even the implied warranty of
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
51 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
52 GNU General Public License for more details.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
53
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
54 You should have received a copy of the GNU General Public License
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
55 along with this program; if not, write to the Free Software
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
56 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
57
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
58 ]
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
59
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
60
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
61
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
62
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
63
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
64 +++++++[->>+++++<<]>>.<[-]<[-]+++++++[->+++++[->>+++<<]<]>>>.<<[-]<[-]>>>[-
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
65 <<+>>>+>+>+>+>+>+<<<<<<]<<[->>+<<]>>>+++++.>------.>+++.>++++++++++++.>----
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
66 -.>----.>>++++++++[-<++++>]<.>>++++++[->+++++[-<<++>>]<]<.<<[->>>+>+>+>+>+>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
67 +>+ <<<<<<<<<]>>>>> >>>[-<<<<<<<<+ >>>>>>>>]<<<<<+++
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
68 +++++ ++++++.>+++++++++++ ++++. >-.>+++ +.>++++++++++.>>+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
69 ++>++ +++++++[-<<+++++>>] <<+. >.>>++ ++++[->+++++[-<<+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
70 +>>]< ]<++.>++++++++++.<< <<<< <<<<<< <<<<<<.>.>.>.>.>.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
71 >.>.> .>.>.>.>.>+++.>---- --.>> >>>[-]< [->+<]<[->+<]<[->
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
72 +<]<[ ->+<]>>>>>+++++++[- >+++++++[-<<<<<<+ +>>>>>>]<]<<<<<.>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
73 .>.>. >.<<<<+.>>.<<--.<<< <<- .<<.>> >>>>>+.-------.>+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
74 ++++. ---....<++.>>>---.> .<<<< ++++++ .>>.<<--.<<<<<.<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
75 .++++ ++++++.>>--.<+.>>>- -.>>> >>>.>. <<<<<.<++.<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
76 <.<<< ----------.>>>>>-.> >.<.< +.<<<< <++++++++.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
77 +.>>> >>>>>>>+++[->>++<<] >>-.< .<<<<< <++[- >>>>>>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
78 >+>>> >+>+>+>+>+>+>+>+>>> +>>>> +>+>+> +>+>>> +<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
79 <<<<<< <<<<<<<<<<<<<<<<< <<<<<] <<<<[- >>>>>> >>>>>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
80 >>+>>>> >>> >>> >>>>+<< <<<<<< <<<<<< <<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
81 <<<<<<<< ] > > >>>>>--- -[->>> >>+>+> >+>>>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
82 >>>>>+>+>> +>> >>>>>>+>+> >+<<<< <<<<< <<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
83 <<<<<<<<<<<< <<<<] >>>[->>>>> >>+ >>>>>>>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
84 >>>>+<<<<<<<<<<<<<<<<<<<<<]>[->>>>>>>>>>>>>>>>>>>>>>>>>>>>>>+>+<<<<<<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
85 <<<<<<<<<<<<<<<<<<<]>+>->>-->-->>+++++>++++>--------->----------->---------
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
86 ---->-------->--------------->++>---->-->>--->-->>+++++++>-------->------->
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
87 ---->----------->---->-->>--->>++<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<[-]<[-]<[-]
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
88 <[-]<[-],+[---------------------------------------------->[-]+<[>[-]<[->>+<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
89 <]]>[>>[-]>[-]<<<[>>+>[-]++++++++++[-<---------->]+<[>[-]<[-<<<+>>>]]<<<[->
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
90 >>+<<<]>>>>[[-]<[-]>++++++++++[-<---------->]>>>>.<.<<.>>>>++.------------.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
91 -..+++++++++++.>.<<<<<<[-]]++++++++++[-<++++++++++>]<<,--------------------
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
92 -------------------------<[-]+>[<[-]>[-<<+>>]]<<[->>+<<]>]>>>>>>>.<.<<.>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
93 ++.-->>>>>>>>>>>>>>>>>>>>>>>>>>>[-]<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<[->>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
94 >>>>>>>>>>>>>>>>>> >>>>>>>>>>+<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
95 <<<<<<<<<<<<<<<<< <<<<<<<<<<<<<]>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>[->+<]
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
96 >>>++++++++++[-< ++++++++++>]<<>>[-]>[-]>[-]>[-]>[-]>[- ]>[-]<<<<<<<<[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
97 ->>+>+<<<]>>>[- <<<+>>>]<<<>[->>+>+<<<]>>>[-<<<+>>>]< < <<>>>[>>[-]<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
98 [->>>+>>+<<<<< ] >>>>>[-<<<<<+>>>>>]<<<<[<->->>>+<<<< >> >>>>+<<<<<<[[-
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
99 >>>>>+<<<<<]> >> >>>[-]<<<<<<]>>>>>[-<<<<<+>>>>>]<<< <<> >>>>>[[-]<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
100 [-]>>>>>]<<< <<] <[[->>>>>+<<<<<]>>+>>[-<<<+>>>]<<< <]>> >>>[-<<<<<+>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
101 >>]<<<<][-] <[-] >>[-<<+>>]>[-<<+>>]>[-]>[-]>[-]<< <<<<< <>[->>>+>+<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
102 ]>>>>[-<<< <+>>> >]<<[->>+>+<<<]>>>[-<<<+>>>]<<[- >-<]>> [-]+<[>-<[-]]>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
103 [[-]<<<[- ]<+>>> >]<[-]<[-]<<<<>>>>[-]>[-]<<<<<[ ->>>>+> +<<<<<]>>>>>[-
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
104 <<<<<+>> >>>]<>[ -]+<[>[-]<[-]]>[<<[-]<[-]<[->> +>+<<<]> >>[-<<<+>>>]>[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
105 -]]<<<< <>>[<<[-] <+>>>>[-<<<+>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
106 >]++++ ++++[-<++ ++++>]<.[-]]<[-]++++++++++<>> [-]>[-]>[ -]>[-]>[-]>[-]
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
107 >[-]<< <<<<<<[-> >+>+<<<]>>>[-<<<+>>>]<<<>[->> +>+<<<]>> >[-<<<+>>>]<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
108 <>>>[> >[-]<<<[- >>>+>>+<<<<<]>>>>>[-<<<<<+>>> >>]<<<<[< ->->>>+<<<<>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
109 >>>+<< <<<<[[->> >>>+<<<<<]>>>>>>[-]<<<<<<]>>> >>[-<<<<< +>>>>>]<<<<<>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
110 >>>>[[ -]<<<<<[- ]>>>>>]<<<<<]<[[->>>>>+<<<<<] >>+>>[-<< <+>>>]<<<<]>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
111 >>[-<< <<<+>>>>> ]<<<<][-]<[-]>>[-<<+>>]>[-<<+ >>]>[-]>[ -]>[-]<<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
112 >[->>> +>+<<<<]> >>>[-<<<<+>>>>]<<[->>+>+<<<]> >>[-<<<+> >>]<<[->-<]>>[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
113 -]+<[> -<[-]]>[[ -]<<<[-]<+>>>>]<[-]<[-]<<<<>> >>[-]>[-] <<<<<[->>>>+>+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
114 <<<<<] >>>>>[-<< <<<+>>>>>]<>[-]+<[>[-]<[-]]>[ <<[-]<[-] <[->>+>+<<<]>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
115 >[-<<< +>>>]>[-] ]<<<<<>[-]+>[<[-]<[-]>>>[-<<< +>>>]++++ ++++[-<++++++>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
116 ]<.[-] ]<[<<[[-] >>[-]++++++++[-<<++++++>>]<<. [-]]>>[-] ][-]++++++++[-
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
117 <+++++ +>]<.<[-] >[-]>[-]>[-]>[-]>[-]>[-]>[-]> [-]>[-]<< <<<<<<<<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
118 <<<<<< <<<<<<<<< <<<<<.>.<<<<<<<<<<[-]>[-]]>[- <<+>>]<<+ +>[-]+<[>[-]<[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
119 ->>+<< ]]>[>>[-] >[-]<<<[>>+>[-]++++++++++[-<- --------- >]+<[>[-]<[-<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
120 <+>>>] ]<<<[->>> +<<<]>>>>[[-]<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
121 [-]>++ ++++++++ [-<---------->]>>>>.<.<.>>>++. -------- ----.-..+++++++
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
122 ++++.> .<<<<<< [-]]++++++++++[-<++++++++++>]<< ,------ ----------------
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
123 ------ ------ ---------<[-]+>[<[-]>[-<<+>>]]<< [->>+< <]>]>>>>>>>.<.<.>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
124 >>++.- ->>>> >>>>>>>>>>>>>>>>>>>>>>>[-]<<<<<<< <<<<< <<<<<<<<<<<<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
125 <<<[-> >>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>+<<<<< <<<< <<<<<<<<<<<<<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
126 <<<<<] >>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>[->+< ]>> >++++++++++[-<++++++
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
127 ++++>] << >>[-]>[-]>[-]>[-]>[-]>[-]>[-]<<<<<<< <[ ->>+>+<<<]>>>[-<<<+>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
128 >]<<<> [ ->>+>+<<<]>>>[-<<<+>>>]<<<<>>>[>>[-]< < <[->>>+>>+<<<<<]>>>>>[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
129 -<<<<< +>>>>>]<<<<[<->->>>+<<<<>>>>>>+<<<<<<[ [->>>>>+<<<<<]>>>>>>[-]
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
130 <<<<<< ]>>>>>[-<<<<<+>>>>>]<<<<<>>>>>>[[-]<<<< <[-]>>>>>]<<<<<]<[[->>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
131 >+<<<< <]>>+>>[-<<<+>>>]<<<<]>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
132 >>[-<<<<<+>>>>>]<<<<][-]<[-]>>[-<<+>>]>[-<<+>>]>[-]>[-]>[-]<<<<<<<<>[->>>+>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
133 +<<<<]>>>>[-<<<<+>>>>]<<[->>+>+<<<]>>>[-<<<+>>>]<<[->-<]>>[-]+<[>-<[-]]>[[-
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
134 ]<<<[-]<+>>>>]<[-]<[-]<<<<>>>>[-]>[-]<<<<<[->>>>+>+<<<<<]>>>>>[-<<<<<+>>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
135 ]<>[-]+<[>[-]<[-]]>[<<[-]<[-]<[->>+>+<<<]>>>[-<<<+>>>]>[-]]<<<<<>>[<<[-]<+>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
136 >>>[-<<<+>>>]++++++++[-<++++++>]<.[-]]<[-]++++++++++<>>[-]>[-]>[-]>[-]>[-]>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
137 [-]>[-]<<<<<<<<[->>+>+<<<]>>>[-<<<+>>>]<<<>[->>+>+<<<]>>>[-<<<+>>>]<<<<>>>[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
138 >>[-]<<<[->>>+>>+<<<<<]>>>>>[-<<<<<+>>>>>]<<<<[<->->>>+<<<<>>>>>>+<<<<<<[[-
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
139 >>>>>+<<<<<]>>>>>>[-]<<<<<<]>>>>>[-<<<<<+>>>>>]<<<<<>>>>>>[[-]<<<<<[-]>>>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
140 ]<<<<<]<[[->>>>>+<<<<<]>>+>>[-<<<+>>>]<<<<]>>>>>[-<<<<<+>>>>>]<<<<][-]<[-]>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
141 >[-<<+>>]>[-<<+>>]>[-]>[-]>[-]<<<<<<<<>[->>>+>+<<<<]>>>>[-<<<<+>>>>]<<[->>+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
142 >+<<<]>>>[-<<<+>>>]<<[->-<]>>[-]+<[>-<[-]]>[[-]<<<[-]<+>>>>]<[-]<[-]<<<<>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
143 >[-]>[-]<<<<<[->>>>+>+<<<<<]>>>>>[-<<<<<+>>>>>]<>[-]+<[>[-]<[-]]>[<<[-]<[-]
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
144 <[->>+>+<<<]>>>[-<<<+>>>]>[-]]<<<<<>[-]+>[<[-]<[-]>>>[-<<<+>>>]++++++++[-<+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
145 +++++>]<.[-]]<[<<[[-]>>[-]++++++++[-<<++++++>>]<<.[-]]>>[-]][-]++++++++[-<+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
146 +++++>]<.<[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]>[-]<<<<<<<<<<<<<<<<<<<<<<<<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
147 <<<<<<<<<<.>.<<<<<<<<<<[-]>[-]]>[-<<+>>]<<-->[-]+<[>-<[->>+<<]]>[>>>>..>>>.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
148 <.>>.>.<<<<<<<<<[-]]>[-<<+>>]<<--------------->[-]+<[>-<[->>+<<]]>[>>>>>>.<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
149 <..>>>>.>.<<<<<<<<<[-]]>[-<<+>>]<<-->[-]+<[>-<[->>+<<]]>[>>>>>>.<..>>>.>.<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
150 <<<<<<<[-]]>[-<<+>>]<<----------------------------->[-]+<[>-<[->>+<<]]>[>>>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
151 >>>>>>>>>>>>>>>>>>>>>.>.>.>.>.>.>.>.>.>.<<<<<<<<<<.<<<<<<<<<<<<<<<<<<<<<<<[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
152 -]]>[-<<+>>]<<-->[-]+<[>-<[->>+<<]]>[>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.<<<
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
153 <<<<<<<<.<<<<<<<<<<<<<<<<<<<<<<<[-]]>[-<<+>>]<<++++++++++++++++++++++++++++
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
154 +++++++++++++++++++++>[-]+<[>-<[->>+<<]]>[>>>>>>>.<.>>++.-->>>>.>.<<.>>>.>.
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
155 >.>.>.>>>.>.>.<<<<<<<<<<<<<<<<<<<<<<<[-]]>[-<<+>>]<<-->[-]+<[>-<[->>+<<]]>[
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
156 >>>>>>.>>>>.>.>>>.>.>.>.>.>.>.>.>.>.<<<<<<<<<<<<<<<<<<<<<<<[-]]>[-<<+>>]<<+
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
157 ++++++++++++++++++++++++++++++++++++++++++++++>[-]>[-]<+<[>[-]>,+<<[-]][-]>
859f9b4339e6 <Gregor> tar xf egobot.tar.xz
HackBot
parents:
diff changeset
158 [>[-]<[-]]>[-<<+>>]<<]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.<<<<<<<<<<<.