Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 13d4d587d1516007e95f86d551d1dbce3d0544e7 (plain) (blame)
1
2
3
4
5
6
7
8
package org.eclipse.eclipsecon2017;

public class SimpleModule {

	public String greet() {
		return "Welcome script developers!";
	}
}

Back to the top