blob: efe4c0b3ecfd9554634bc519ceaf5b4ecc5a444b [file] [log] [blame]
package org.example.service.impl;
import org.example.service.MyService;
public class MyServiceImpl implements MyService {
public double compute(double value) {
return Math.exp(value * Math.cosh(value));
}
}