Last active
August 29, 2015 14:07
-
-
Save quintesse/b3335bf7cf04c40ee58e to your computer and use it in GitHub Desktop.
A test script for the Ceylon web runner: http://try.ceylon-lang.org/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module web_ide_script "1.0.0" { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//$webrun_full_script | |
import ceylon.language.meta.declaration { | |
ValueDeclaration | |
} | |
shared void run() { | |
for (dec in `class String`.memberDeclarations<ValueDeclaration>()) { | |
print(dec); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hmmm http://try.ceylon-lang.org?gist=b3335bf7cf04c40ee58e