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 1 year has passed since last update.

今でも使えるBASIC

Posted at

今でも使えるBASICマシン

今でも使えるBASICマシンがあります。
それがIchigojamです。
子供向けのマシンですがGPIOも使えます。
https://ichigojam.net/

WebでもIchigojamが使えます。

実はこのIchogojamBASICはブラウザから使えるようにサイトが用意されています。
https://fukuno.jig.jp/app/IchigoJam/

じゃ使ってみよう!!

上記のサイトに行って黒い画面でプログラムを書いていきます。
BASICでプログラムを作るときは、行番号という数字の後ろに命令を入力しENTERキーで記録されます。
では以下のコードを入力してみます。

100 INPUT "A=",A
110 INPUT "B=",B
120 PRINT "A+B=";A+B

ちゃんと入っているかは
LIST
で入力したプログラムが表示されれば大丈夫です。

動かしてみよう

RUN
という命令で実行できます。

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?