LoginSignup
2
1

More than 5 years have passed since last update.

プログラミングを最短で始める方法

Posted at

ターミナルエミュレータさえあれば5分でプログラミング始められるよ♪ってお話.

  • (1) テキストエディタ(geditとか)を開く
  • (2) 下記のコードを書く
notify-send 'Hello, world!'
  • (3) このファイルを名前を付けて保存で ~/a.sh とかで保存する
  • (4) ターミナルで下記コマンドを実行する
sudo apt-get install libnotify-bin
bash ~/a.sh
  • (5) "Hello, world!" と出たら君もプログラマの仲間入りだ!!

参考にしました http://qiita.com/phi/items/b1c264f0bd8a5cc9033b

2
1
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
2
1