-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Consider the following way of describing modules:
@Module(name="Adder", description="Adds two numbers together")
public class Adder
{
@Main
public static add(
@In(name="first") int first,
@In(name="second") int second)
{
return first + second;
}
}This is a concise way of writing small modules, but it's tricky to implement. This should be thought out carefully before implementation.