0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jsdoでPalo Alto Tiny Basic

Last updated at Posted at 2019-03-28

概要

jsdoでPalo Alto Tiny Basicやってみた。

写真

image

参考にしたページ

サンプルコード

10 FOR I=1 TO 100
20 IF I-(I/15)*15 = 0 GOTO 80
30 IF I-(I/3)*3 = 0 GOTO 100
40 IF I-(I/5)*5 = 0 GOTO 120
50 PRINT I,
60 NEXT I
70 STOP
80 PRINT " FizzBuzz",
90 GOTO 60
100 PRINT " Fizz",
110 GOTO 60
120 PRINT " Buzz",
130 GOTO 60    

成果物

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?