This website works better with JavaScript.
Explore
Help
Sign In
simonkellet
/
Triangle-Tools
Archived
Watch
1
Star
0
Fork
You've already forked Triangle-Tools
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Merge branch 'java11' of github.com:sandybrownlee/Triangle-Tools into java11
Browse Source
java11
Sandy Brownlee
2 years ago
parent
90977fb64f
3150ae8fa9
commit
e8780a5b11
1 changed files
with
11 additions
and
0 deletions
Show all changes
Ignore whitespace when comparing lines
Ignore changes in amount of whitespace
Ignore changes in whitespace at EOL
Show Stats
Download Patch File
Download Diff File
11
programs/while.tri
11
programs/while.tri
Unescape
Escape
View File
@ -0,0 +1,11 @@
let
var a : Integer
in
begin
a := 0;
while a < 5 do
begin
put('a');
a := a + 1;
end
end
Reference in new issue
Repository
simonkellet/Triangle-Tools
Title
Body
Create Issue