Chapter 6 Example 1
♥0 |
Line 13 |
Modified 2009-06-16 03:01:51 |
MIT License
archived:2017-03-10 06:24:54
ActionScript3 source code
/**
* Copyright actionscriptbible ( http://wonderfl.net/user/actionscriptbible )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/bfRp
*/
package {
import com.actionscriptbible.Example;
public class ch6ex1 extends Example {
public function ch6ex1() {
var porky:String = 'Porky says "That\'s all folks!"';
trace(porky);
var bugs:String = 'Bugs says \"What\'s up, doc?\"';
trace(bugs);
var ok:String = "In an interstellar burst,\nI am back to save the universe."
trace(ok);
}
}
}