fine tuning

This commit is contained in:
tTh 2024-08-27 10:55:32 +02:00
parent 1e175bc6ef
commit 7abf55e44b
2 changed files with 19 additions and 1 deletions

View File

@ -57,6 +57,22 @@ mais canonique~:
\lstinputlisting{code/Basic/bywater-1.bas}
Ce qui nous donne à l'exécution~:
\begin{verbatim}
tth@redlady:~/Devel/TetaTricks$ bwbasic code/Basic/bywater-1.bas
Bywater BASIC Interpreter/Shell, version 2.20 patch level 2
Copyright (c) 1993, Ted A. Campbell
Copyright (c) 1995-1997, Jon B. Volkoff
2 4
3 9
4 16
5 25
tth@redlady:~/Devel/TetaTricks$
\end{verbatim}
Première conclusion : affaire à suivre.
% ====================================================================

View File

@ -1,4 +1,6 @@
10 CLEAR
20 FOR I=1 TO 10
20 FOR I=2 TO 5
30 PRINT I, I*I
40 NEXT I
50 SYSTEM