samples/reexport/src-query/org/apidesign/reexport/query/Query.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
parent 94 9f71e6842995
permissions -rw-r--r--
Using HTTPS to download the libraries
jtulach@94
     1
package query;
jtulach@94
     2
jtulach@94
     3
import api.String;
jtulach@94
     4
jtulach@94
     5
public final class Query {
jtulach@94
     6
    public String computeReply() {
jtulach@94
     7
        char[] hello = { 'H', 'e', 'l', 'l', 'o' };
jtulach@94
     8
        return new String(hello);
jtulach@94
     9
    }
jtulach@94
    10
}