Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Compiler_hw3_interpreter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lang0909
Compiler_hw3_interpreter
Repository
821def8e43c2c420a461c2ada3064f113bfbc951
Select Git revision
Selected
821def8e43c2c420a461c2ada3064f113bfbc951
Branches
1
master
default
protected
2 results
Show more breadcrumbs
compiler_hw3_interpreter
sample4.mc
sample4.mc
Find file
Blame
Edit
Open in Web IDE
.
Quickly and easily edit multiple files in your project.
Edit single file
Edit this file only.
File actions
Find file
t
Blame
Copy permalink
y
Copy contents
Open raw
Download
Add 5th sample file for interpreter operation
lang0909
authored
Aug 28, 2019
821def8e
History
821def8e
Aug 28, 2019
History
sample4.mc
97 B
1
2
3
4
5
6
7
8
9
10
11
12
13
14
a=2;
b=3;
if(a!=b)
{
while(a
<b
)
{
b=
b-1;
a=
a+1;
}
print
b
;
}
else
print
a
;