
io.github.andriamarosoa.functional.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functional Show documentation
Show all versions of functional Show documentation
Demo project for Spring Boot
package io.github.andriamarosoa.functional;
import java.lang.reflect.Method;
// import io.github.andriamarosoa.functional.interfaces.Blank0;
public class Main {
public void get(){
System.out.println(444);
}
public static void main(String[] args) throws Throwable {
Method m=Main.class.getMethod("get");
System.out.println(Function.from(m).run(new Main()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy