Created
October 20, 2024 17:15
-
-
Save ikizoglu/6f7e046ca6ed53c11b540a4341418e6a to your computer and use it in GitHub Desktop.
HelloWorld-ICP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //My First Motoko Project! | |
| //Kemal İKİZOĞLU - @ikizoglukemal | |
| actor HelloWorld { | |
| public query func greet() : async Text { | |
| return "Hello, World!"; | |
| }; | |
| public query func say(phrase : Text) : async Text { | |
| return phrase; | |
| }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment