Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rosskuehl/brainf-ck
https://github.com/rosskuehl/brainf-ck
brainfuck compiler fsharp
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rosskuehl/brainf-ck
- Owner: rosskuehl
- Created: 2023-10-30T01:43:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-17T18:55:31.000Z (12 months ago)
- Last Synced: 2024-09-29T16:05:24.969Z (about 1 month ago)
- Topics: brainfuck, compiler, fsharp
- Language: F#
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brainf#ck
Brainf#ck is a toy compiler that reads in [brainfuck](https://esolangs.org/wiki/Brainfuck) source files and uses [AssemblyBuilder](https://learn.microsoft.com/en-us/dotnet/api/system.reflection.emit.assemblybuilder?view=net-8.0) to generate dynamic assemblies and execute their code during the same application run.
### Example usage
```bash
dotnet run scripts/hello.bf
Hello World!dotnet run -- --size double scripts/cellsize.bf
16 bit cells
```