Kotlin lambda
Lambdas
Funciones anónimas
¿ Por qué se llaman funciones anónimas ?
1.1 Como es en Java
button.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e){
System.out.println("Hi");
}
});
Lam...
azort.hashnode.dev5 min read