This file's preview pane is the one that should show up first!
Last active
September 21, 2016 15:03
-
-
Save quintesse/191112755a714d2bf291 to your computer and use it in GitHub Desktop.
Ceylon Web Runner: Test 1
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" { | |
| import ceylon.collection "1.3.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
| import ceylon.collection { LinkedList } | |
| void run() { | |
| value list = LinkedList{"Test 1", "Test 2"}; | |
| list.add("Test 3"); | |
| print(list); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Click here to run this code online