文字入力2 エスケープシーケンス出力

by myg019 forked from エスケープシーケンス出力 (diff: 5)
Adobe
♥0 | Line 8 | Modified 2010-09-13 15:47:11 | MIT License
play

ActionScript3 source code

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

// forked from shmdmoto's エスケープシーケンス出力
// forked from shkmotoike's 文字列出力(com.actionscriptbible.Exampleクラス)
/*
 * ActionScriptの基本をスタンダードなプログラミング言語学習の流れに
 * 沿って進めるために、テキスト出力ベースのクラスを使用します。
 */
package {
    import com.actionscriptbible.Example;
    public class FlashTest extends Example {
        public function FlashTest() {
            // write as3 code here..
            trace("Adobe Flash\nAdobe Flash Builder\nAdobe Flash Catalyst");
    }
    }
}