Last active
October 28, 2015 20:56
-
-
Save quintesse/43ab40f8c2378a3d10cf to your computer and use it in GitHub Desktop.
Ceylon Web Runner: xxx
This file contains 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
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??? | |
} |
This file contains 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" { | |
// Add module imports here | |
} |
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