Step by step guide to implement cross-platform support for Brainfuck in Rust

Cross-platform Brainfuck Interpreter implementation in Rust - Part 2

This article is the next part of Brainfuck interpreter implementation. We built the library that parses and executes Brainfuck language in the previous part. In this part, we will use this library in the CLI program and deploy the code to AWS Lambda. Let’s begin with the CLI. CLI program implementaiton Firstly, we need to create a new application in our workspace. In the terminal, go to the root workspace directory and run this command:...

March 17, 2022 · 10 min · Roka