This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
nils
/
WhileInterpreter
mirror of
https://github.com/malteschmitz/WhileInterpreter.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38
Commits
4
Branches
182 KiB
Java
100%
Branch:
master
dependabot/maven/junit-junit-4.13.1
gh-pages
gitpod
master
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'master'
${ noResults }
WhileInterpreter
/
mult.whl
8 lines
66 B
Raw
Permalink
Blame
History
a := 2;
b := 4;
r := 0;
while (a) {
r := r + b ;
a := a - 1
}