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
     1 package query;
     2 
     3 import api.String;
     4 
     5 public final class Query {
     6     public String computeReply() {
     7         char[] hello = { 'H', 'e', 'l', 'l', 'o' };
     8         return new String(hello);
     9     }
    10 }