interface sayable{
    public String say();
}
class Main{
    public static void main(String[] args){
        sayable s=()->{
            return "hi";
        };
        System.out.println(s.say());
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: