Mercurial
view gara/android/tutorial/src/main/java/com/example/bazel/Greeter.java @ 56:92b097d70af4
Updated so that fzf works out of the box.
| author | June Park <me@mrjunejune.com> |
|---|---|
| date | Tue, 16 Dec 2025 21:01:45 -0500 |
| parents | b9a40c633c93 |
| children |
line wrap: on
line source
package com.example.bazel; /** * A tiny Greeter library for the Bazel Android "Hello, World" app. */ public class Greeter { public String sayHello() { return "Hello Bazel! \uD83D\uDC4B\uD83C\uDF31"; // Unicode for 👋🌱 } }