Skip to content

Instantly share code, notes, and snippets.

@quintesse
Last active August 29, 2015 14:07
Show Gist options
  • Save quintesse/b3335bf7cf04c40ee58e to your computer and use it in GitHub Desktop.
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/
module web_ide_script "1.0.0" {
}
//$webrun_full_script
import ceylon.language.meta.declaration {
ValueDeclaration
}
shared void run() {
for (dec in `class String`.memberDeclarations<ValueDeclaration>()) {
print(dec);
}
}
@quintesse
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment