I looked up at this Learn how to create extensions
what more?
also, how to do function with if then?
Hi @Matanel325,
This will be helpful:
https://docs.kodular.io/guides/extensions/create-extensions/
Also check this:
it will be something like:
@SimpleFunction(description="")
public String Compare(String a , String b) {
if (a==b){
return "They are equal!";
} else {
return "they aren't equal!";
}
}
1 Like
Read and Learn Java If …
This Guide Works 100%
1 Like