This file's preview pane is the one that should show up first!
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
Description Resource Path Location Type | |
AbstractLaunchConfigurationTab cannot be resolved to a type CeylonTestLaunchConfigTab.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin/launch line 43 Java Problem | |
AbstractLaunchConfigurationTabGroup cannot be resolved to a type CeylonTestLaunchConfigTabGroup.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin/launch line 11 Java Problem | |
AbstractPreferenceInitializer cannot be resolved to a type CeylonTestPreferenceInitializer.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin line 9 Java Problem | |
AbstractUIPlugin cannot be resolved to a type CeylonAndroidPlugin.java /com.redhat.ceylon.eclipse.android.plugin/src/com/redhat/ceylon/eclipse/android/plugin line 10 Java Problem | |
AbstractUIPlugin cannot be resolved to a type CeylonTestPlugin.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin line 14 Java Problem | |
Action cannot be resolved to |
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
//$webrun_wrapped | |
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" below to run the program. |
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
//$webrun_wrapped | |
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" below to run the program. |
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
//$webrun_wrapped | |
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" below to run the program. |
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
//$webrun_wrapped | |
shared void run() { | |
print(runtime.version); | |
} |
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
//$webrun_wrapped | |
shared void run() { | |
// An interop demo | |
dynamic { | |
dynamic x = foobar(); | |
dynamic y = \iObject.getOwnPropertyNames(x); | |
print("{"); | |
for (i in y) { | |
print(" " + i + ": '" + x[i] + "',"); | |
} |
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() { | |
Integer unused; | |
String x = nothing; | |
hello(); | |
} |
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! |