Skip to content

Instantly share code, notes, and snippets.

@Aidan128
Created December 11, 2021 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aidan128/23fed7366e325ade7b33f89981d26e58 to your computer and use it in GitHub Desktop.
Save Aidan128/23fed7366e325ade7b33f89981d26e58 to your computer and use it in GitHub Desktop.
Java class in library module
public class LibraryJavaClass {
int function1() {
return 2 + 2;
}
int function2() {
return 3 + 3;
}
int function3() {
return 4 + 4;
}
int function4() {
return 5 + 5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment