エスケープシーケンス出力練習a

by lenonsun forked from エスケープシーケンス出力 (diff: 5)
クリアー。
♥0 | Line 8 | Modified 2010-09-13 15:44:01 | MIT License
play

ActionScript3 source code

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

// 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");
            }
    }
}