Skip to content

Instantly share code, notes, and snippets.

@quintesse
Created March 10, 2017 23:38
Show Gist options
  • Save quintesse/15f64ef3f2c0681dda90913605af3ed6 to your computer and use it in GitHub Desktop.
Save quintesse/15f64ef3f2c0681dda90913605af3ed6 to your computer and use it in GitHub Desktop.
Ceylon Web Runner: Nullable Callable
//$webrun_wrapped
shared void run() {
Anything(String)? onEvent = null;
if (exists onEvent) {
onEvent("foo");
}
}
@quintesse
Copy link
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