Skip to content

Instantly share code, notes, and snippets.

@quintesse
Last active September 21, 2016 15:03
Show Gist options
  • Select an option

  • Save quintesse/191112755a714d2bf291 to your computer and use it in GitHub Desktop.

Select an option

Save quintesse/191112755a714d2bf291 to your computer and use it in GitHub Desktop.
Ceylon Web Runner: Test 1

This file's preview pane is the one that should show up first!

module web_ide_script "1.0.0" {
import ceylon.collection "1.3.0";
}
import ceylon.collection { LinkedList }
void run() {
value list = LinkedList{"Test 1", "Test 2"};
list.add("Test 3");
print(list);
}
@quintesse
Copy link
Copy Markdown
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