forked from: 変数の宣言と値の出力

by Erinco157 forked from 変数の宣言と値の出力 (diff: 4)
♥0 | Line 10 | Modified 2011-10-03 15:06:08 | MIT License
play

ActionScript3 source code

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

// forked from lenonsun's 変数の宣言と値の出力
// 変数の宣言と値の出力
/*
 * ActionScriptの基本をスタンダードなプログラミング言語学習の流れに
 * 沿って進めるために、テキスト出力ベースのクラスを使用します。
 */
package {
    import com.actionscriptbible.Example;
    public class FlashTest extends Example {
        public function FlashTest() {
            // write as3 code here..
            var shuugou:int; 
            shuugou = 815 + 78 + 99; 
            trace(shuugou);
        }
    }
}

Forked