Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 3.1 KB

README.md

File metadata and controls

62 lines (51 loc) · 3.1 KB

MurmelRechner

Open the application

https://felixselter.github.io/MurmelRechner/

Features

Simple Interface

interface

  1. loadLoad your code
  2. saveSave your code
  3. flowchartGenerate a flowchart
  4. formattFormat your code
  5. addregisterAdd a register/marble store
  6. removeregisterremove the last register/marble store
  7. execute Execute your entire code
  8. nextlineExecute this line. The current position is indicated by this pointer pointer
  9. Stop Click this to stop your program if youre stuck in an infinite loop
  10. collaborationEnable the collaboration mode
  11. fullscreenEnter the fullscreen mode
  12. id Click the id to get a link so you can invite others

Beautiful syntax highlighting

syntax

Live visual feedback

feedback

Automatic code formatting

formatting1 Becomes formatting2

Generate Flowchart

It can automatically generate a flowchart from your code
flowchart(1)

Collaborative editing:

Enable the collaboration mode to work with others at the same time

Example multiplication code

tst 1
--jmp 4
hlt
dec 1

tst 2
--jmp 8
jmp 12
dec 2
inc 3
inc 4
jmp 5

tst 3
--jmp 15
jmp 1
dec 3
inc 2
jmp 12