aboutsummaryrefslogtreecommitdiff
path: root/challenge-089/abigail/brainfuck/ch-2.bf
blob: 38cadb6a28a668afbf26da316cd423d87cd4cf53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
>++       [>+++++   <-] >  # Cell 2 contains 10 ("\n")
>++++++++ [>++++    <-] >  # Cell 4 contains 32 (' ')
>+++++++  [>+++++++ <-] >  # Cell 6 contains 49 ('1')
+++++++ . <<   . >>        # Print 8
------- . <<   . >>        # Print 1
+++++   . <<<< . >>>>      # Print 6
---     . <<   . >>        # Print 3
++      . <<   . >>        # Print 5
++      . <<<< . >>>>      # Print 7
---     . <<   . >>        # Print 4
+++++   . <<   . >>        # Print 9
------- . <<<< . >>>>      # Print 2