This website works better with JavaScript.
Explore
Help
Sign In
simonkellet
/
CSCU9A5-Triangle-Assignment
Watch
1
Star
0
Fork
You've already forked CSCU9A5-Triangle-Assignment
0
Code
Issues
Pull Requests
Packages
Projects
Releases
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.
12
Commits
1
Branch
0
Tags
2.3 MiB
Tag:
Branch:
Tree:
main
main
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'main'
${ noResults }
CSCU9A5-Triangle-Assignment
/
programs
/
while-curly.tri
14 lines
113 B
Raw
Permalink
Normal View
History
Unescape
Escape
initial push with task5b done
1 year ago
! print out aaaaa
let
var a : Integer
in
{
a := 0;
while a < 5 do
{
put('a');
a := a + 1;
}
}