From bbca6c30ffa32ec164a2d347515a22bbfc322dd2 Mon Sep 17 00:00:00 2001 From: SebasKoedam Date: Sun, 21 Apr 2024 16:09:10 +0200 Subject: [PATCH] Add HelloHuman class with say action --- code/src/app/src/test/java/HelloHuman.java | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/src/app/src/test/java/HelloHuman.java diff --git a/code/src/app/src/test/java/HelloHuman.java b/code/src/app/src/test/java/HelloHuman.java new file mode 100644 index 0000000..7228283 --- /dev/null +++ b/code/src/app/src/test/java/HelloHuman.java @@ -0,0 +1,6 @@ +public class HelloHuman { + // Create a new say action. + Say say = SayBuilder.with(qiContext) // Create the builder with the context. + .withText("Hello human!") // Set the text to say. + .build(); // Build the say action. +}