In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

forked from: 計算結果の出力

メソッドのカッコ内に指定された計算記号を入れて計算をしました。
Get Adobe Flash player
by ns50f162 03 Oct 2011
/**
 * Copyright ns50f162 ( http://wonderfl.net/user/ns50f162 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/fZqF
 */

// forked from lenonsun's 計算結果の出力
// 計算結果の出力
/*
 * ActionScriptの基本をスタンダードなプログラミング言語学習の流れに
 * 沿って進めるために、テキスト出力ベースのクラスを使用します。
 */
package {
    import com.actionscriptbible.Example;
    public class FlashTest extends Example {
        public function FlashTest() {
            // write as3 code here..
            trace(1+2);
            trace(5-3);
            trace(10*20);
            trace(30/5);
            trace(10+3*5);
            trace(100+20/4);
        }
    }
}