Metadata-Version: 2.4
Name: SpBFUltraProMaxAirNeoEx
Version: 0.1.4
Summary: Super BrainF**k Ultra Professional Max Air Neo Ex
Author: EMO_123
License: MIT
Keywords: emo123,joke,BrainFuck,BF
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

# Super BrainF\*\*k Ultra Professional Max Air Neo Ex
** Tip: I am not the original author of BrainF\*\*k. **
###### Never install any version prior to this one, as it enforces main.bf.

** Warning: The following content contains some profanity. Please ensure you are over 3 million years old. **

# install
```bash
pip install SpBFUltraProMaxAirNeoEx
```
# Run BF in your Python code.
```python
import bf
bf.fuck("""
++++++++++[>+++++++>++++++++++>+++>+<<<<-]
>++.>+.+++++++..+++.>++.<<+++++++++++++++.
>.+++.------.--------.>+.>.
""")
```
I also added debug.
```python
import bf
bf.fuck("""
++++++++++[>+++++++>++++++++++>+++>+<<<<-]
>++.>+.+++++++..+++.>++.<<+++++++++++++++.
>.+++.------.--------.>+.>.
""",debug=True)
```
# Run BF in your console
```bash
bf -c "++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>."
bf helloworld.bf
bf debug helloworld.bf
```
# Install the library

I've got [the website](https://emocez.github.io/SpBFUltraProMaxAirNeoEx/) up! You can now install the library via the web:
```bash
bf install copy
bf install math
bf install set
#Currently, I have only made these.
```

Install the local library

```bash
cd #(The directory where your library is located)
bf install -f #(Your library name)
```

# uninstall
```bash
bf uninstall #(Your library name)
```
# Modify URL
If you have also built a similar website, you can replace the URL with yours:
```bash
bf url "https://emocez.github.io/SpBFUltraProMaxAirNeoEx/"
```

# Show what symbols are in a library
```bash
bf show mylib
```

# List all libraries
```bash
bf list
```

# Search local library (not useful (maybe?))
```bash
bf search my #Keyword
```

# How to create a library?
I even forgot to mention this in 0.1.0.

This library is essentially a JSON file.

You can create a JSON file, with the file name being your library name, for example...
```bash
touch more.json
```

Then, you need to edit this file.

You need to think about it yourself; I usually use nano.
```bash
nano more.json
```

Then, write a pair of square brackets, like: []
```json
[
]
```
Write a pair of curly braces inside, like: {}
```json
[
    {
    }
]
```
Write the symbol.
```json
[
    {
        "name":"#"
    }
]
```
Add execution logic

I'll just write an addition.
```json
[
    {
        "name":"#",
        "expre":[
            "r",
            "get",
            "l",
            {"add":"get"}
        ]
    }
]
```
Currently, I have prepared these available execution logics:

"r": Move to the right

"l": Move to the left

"get": Obtain the value of the current cell

"give": Set the value of the current cell to the value obtained last time.

{"set":number}: Set the current cell to a number

{"add":number}: Increase the number in the current cell

{"sub":number}: Reduce the number in the current cell.

Tip: In the content above, the number for add or sub can be the string "get," which allows you to add the number obtained in the previous operation.

After exiting the editor, you can proceed with the installation!
```bash
bf install -f more
```

After installation, you can use the symbols you defined:
```BrainFuck
>+++
<+++
#
```
