Initial commit.

This commit is contained in:
2026-02-11 12:39:18 +01:00
commit d104ba3198
21 changed files with 2473 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
persistent actor {
public query func greet(name : Text) : async Text {
return "Hello, " # name # "!";
};
};