Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/BruceEckel/OnJava8-Examples
/ main
Method
main
annotations/ifx/Multiplier.java:26–30 ·
view source on GitHub ↗
(String[] args)
Source
from the content-addressed store, hash-verified
24
return
arg * 10;
25
}
26
public
static
void
main(String[] args) {
27
Multiplier m =
new
Multiplier();
28
System.out.println(
29
"11 * 16 = "
+ m.multiply(11, 16));
30
}
31
}
32
/* Output:
33
11 * 16 = 176
Callers
nothing calls this directly
Calls
1
multiply
Method · 0.95
Tested by
no test coverage detected