forked from: 文字列出力(com.actionscriptbible.Exampleクラス)

by peace96beats forked from 文字列出力(com.actionscriptbible.Exampleクラス) (diff: 19)
文字列出力(com.actionscriptbible.Exampleクラス)

ActionScriptの基本をスタンダードなプログラミング言語学習の流れに
沿って進めるために、テキスト出力ベースのクラスを使用します。
♥0 | Line 19 | Modified 2012-12-20 20:49:45 | MIT License
play

ActionScript3 source code

/**
 * Copyright peace96beats ( http://wonderfl.net/user/peace96beats )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/9e1kL
 */

// forked from lenonsun's 文字列出力(com.actionscriptbible.Exampleクラス)
// 文字列出力(com.actionscriptbible.Exampleクラス)
/*
 * ActionScriptの基本をスタンダードなプログラミング言語学習の流れに
 * 沿って進めるために、テキスト出力ベースのクラスを使用します。
 */
package {
    import com.actionscriptbible.Example;
    public class FlashTest extends Example {
        public function FlashTest() {
            // write as3 code here..
            trace("Hello, wonderfl!");
            
            trace("yokozuna");
            
            var num:Number = 50;
            
            if(num < 10){
                trace("晴れてんなあ");
            }else if(num < 20){
                trace("晴れてねえなあ");
            }else if(num <40){
                trace("なんだおまえ");
            }else{
                trace("やめてください!");
            }




        }
    }
}