Skip to content

Instantly share code, notes, and snippets.

@ceylonwebide
Last active August 13, 2017 15:10
Show Gist options
  • Save ceylonwebide/15bd4e459de5edcd8624 to your computer and use it in GitHub Desktop.
Save ceylonwebide/15bd4e459de5edcd8624 to your computer and use it in GitHub Desktop.
EXAMPLE: Module Import
import ceylon.collection { LinkedList }
void run() {
value list = LinkedList{"Test 1", "Test 2"};
list.add("Test 3");
print(list);
}
module web_ide_script "1.0.0" {
import ceylon.collection "1.3.2";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment