From 8876526e956781c1b3e6a19cfc13af406af47546 Mon Sep 17 00:00:00 2001 From: johannst Date: Sun, 8 Dec 2024 22:49:14 +0000 Subject: deploy: 5f90bf71ab2d347fbe2d0dc89b71ab5d6e923b46 --- bf/all.html | 1 + bf/index.html | 16 ++++++++++++++++ bf/sidebar-items.js | 1 + 3 files changed, 18 insertions(+) create mode 100644 bf/all.html create mode 100644 bf/index.html create mode 100644 bf/sidebar-items.js (limited to 'bf') diff --git a/bf/all.html b/bf/all.html new file mode 100644 index 0000000..77b63d3 --- /dev/null +++ b/bf/all.html @@ -0,0 +1 @@ +List of all items in this crate

List of all items

\ No newline at end of file diff --git a/bf/index.html b/bf/index.html new file mode 100644 index 0000000..05273e9 --- /dev/null +++ b/bf/index.html @@ -0,0 +1,16 @@ +bf - Rust

Crate bf

source
Expand description

Brainfuck VM.

+

This example implements a simple +brainfuck interpreter +[BrainfuckInterp] and a jit compiler [BrainfuckJit].

+

Brainfuck is an esoteric programming languge existing of 8 commands.

+
    +
  • > increment data pointer.
  • +
  • < decrement data pointer.
  • +
  • + increment data at current data pointer.
  • +
  • - decrement data at current data pointer.
  • +
  • . output data at current data pointer.
  • +
  • , read input and store at current data pointer.
  • +
  • [ jump behind matching ‘]’ if data at data pointer is zero.
  • +
  • ] jump behind matching ‘[’ if data at data pointer is non-zero.
  • +
+
\ No newline at end of file diff --git a/bf/sidebar-items.js b/bf/sidebar-items.js new file mode 100644 index 0000000..5244ce0 --- /dev/null +++ b/bf/sidebar-items.js @@ -0,0 +1 @@ +window.SIDEBAR_ITEMS = {}; \ No newline at end of file -- cgit v1.2.3