Skip to content

Commit 4e4b03d

Browse files
committed
Virth forked from DNCL3
1 parent 75b71cc commit 4e4b03d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+421
-300
lines changed

README.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Virth - Sleek Structured Programming Language
22

3+
![virth logo](virth-logo.webp)
4+
35
Virth (pronounced 'Virt') is an easy-to-learn, sleek structured programming language. (forked [DNCL3](https://github.com/code4fukui/DNCL3))
46

57
Virth is a sleek and modern programming language inspired by the renowned creator of Pascal, Niklaus Wirth. It embodies simplicity and elegance, designed to empower education through structured programming.
@@ -268,7 +270,7 @@ while x < 10
268270
next
269271
```
270272

271-
#### 5.3.2. 後判定
273+
#### 5.3.2. post-check
272274

273275
The <process> is repeatedly executed until the <condition> becomes true.
274276

@@ -288,14 +290,6 @@ do
288290
until x >= 10
289291
```
290292

291-
There is also a do while loop that repeatedly executes the <process> until the <condition> becomes false.
292-
293-
```
294-
do
295-
<process>
296-
while <condition>
297-
```
298-
299293
### 5.4. Loop Interruption
300294

301295
Within a loop statement, using break interrupts the loop.

0 commit comments

Comments
 (0)