b7e61d5ede
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com//10187018 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@7102 260f80e4-7a28-3924-810f-c04153c831b5
11 lines
320 B
Bash
Executable File
11 lines
320 B
Bash
Executable File
# Sample script showing how to use legpad.
|
|
|
|
# First compile "legpad.dart" to "legpad.dart.js" usung dart2js.
|
|
set -x
|
|
DART_DIR="../../.."
|
|
$DART_DIR/out/Release_ia32/dart2js --out=legpad.dart.js legpad.dart
|
|
|
|
# Now run legpad to generate an html page that can be used to compile
|
|
# example.dart
|
|
python legpad.py example.dart
|