Skip to content

Hopson97/Brainf-ck-Interpretter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Brainf-ck-Interpretter

Simple brainf*ck interpretter

It is a simple satire language with simple rules:

Command-Desciption

  •  >       Increment the data pointer (to point to the next cell to the right).
    
  •  <       Decrement the data pointer (to point to the next cell to the left).
    
  •  +       Increment (increase by one) the byte at the data pointer.
    
  •  -       decrement (decrease by one) the byte at the data pointer.
    
  •  .       Print out the character
    
  •  ,       Get one char/ byte of input
    
  •  [       Begin while(the value in memory at the mem ptr is not 0)
    
  •  ]       end while
    

*/

About

Simple brainf*ck interpretter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages