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.

ほのおかた工房 こうぼうScratchとDartでゲームプログラム入門にゅうもん Advent Calendar 2016
記事きじです

Scratchと比較ひかくしてみよう

main(List<String> args) {
  print('Dart Love');
}

を、Scratchと比較ひかくしてみましょう。

v001.png
  • はたがクリックされたとき」と main(List args) {} はおなじよなもの
    アプリの起動時きどうじばれます。
  • 「xxxとう」とprint('xxx'); はたようなもの
    文字もじ表示ひょうじします。

argsとはなにでしょうか?

Dartでは、アプリ起動時きどうじ文字列もじれつわたことができます。
コードをいて、ためしてみましょう。

1. 以下いじょうのようなコードを

main(List<String> args) {
  print('Dart Love ${args}');
}

2. コマンドラインから実行じっこうしてみよう!!

c:\tools\dart-sdk-1.21\bin\dart.exe .\bin\main.dart test01 test02

Dart Love [test01,test02]
表示ひょうじされましたね!!

Thanks

ここまで、んでくれてありがとう!!

では、次回じかいえることを、たのしみにしています。

ではでは

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?