Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brainf**k project framework (like cargo) #3

Open
HipyCas opened this issue Apr 11, 2022 · 0 comments
Open

Brainf**k project framework (like cargo) #3

HipyCas opened this issue Apr 11, 2022 · 0 comments

Comments

@HipyCas
Copy link
Owner

HipyCas commented Apr 11, 2022

brained (name idea) is a CLI tool to ease the development of Brainf**k projects. Under the hood, it makes use of the brainrs interpreter, and gives you a project structure, build and run pipeline and tools and a easier way of working with your code.

Project structure

project_folder/
 |-- src/
 |     |-- main.bf
 |     |-- funcs.bf
 |     |-- ... (other code)
 |-- build/ (generated build files)
 |-- Brained.toml (configuration file)

All Brainf**k code files should be placed in the src directory, where all will be passed as included files and then main.rs will be the last to be executed. All output, if any, would go to the build folder. The Brained.toml file takes care of dependencies and all data related to the project.

File execution order

If your files should execute in any specific order, you can achieve so by indicating it in the Brained.toml file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant