Skip to content

Instantly share code, notes, and snippets.

@quintesse
Last active October 28, 2015 20:56
Show Gist options
  • Save quintesse/43ab40f8c2378a3d10cf to your computer and use it in GitHub Desktop.
Save quintesse/43ab40f8c2378a3d10cf to your computer and use it in GitHub Desktop.
Ceylon Web Runner: xxx
shared void run(){
// The classic "hello world" in Ceylon
print("Hello world!");
// This prints the same text:
String str = "world";
print("Hello ``str``!");
// Click "Run" above to run the program.
// It is converted to JavaScript and runs directly in your browser!
// Also try the other examples in the list on the right???
}
module web_ide_script "1.0.0" {
// Add module imports here
}
@quintesse
Copy link
Author

Click here to run this code online

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