blob: efe4c0b3ecfd9554634bc519ceaf5b4ecc5a444b [file] [log] [blame]
Clement Escoffier21b80822009-04-15 13:21:29 +00001package org.example.service.impl;
2
3import org.example.service.MyService;
4
5public class MyServiceImpl implements MyService {
6 public double compute(double value) {
7 return Math.exp(value * Math.cosh(value));
8 }
9}