Skip to content

Instantly share code, notes, and snippets.

@ikizoglu
Created October 20, 2024 17:15
Show Gist options
  • Select an option

  • Save ikizoglu/6f7e046ca6ed53c11b540a4341418e6a to your computer and use it in GitHub Desktop.

Select an option

Save ikizoglu/6f7e046ca6ed53c11b540a4341418e6a to your computer and use it in GitHub Desktop.
HelloWorld-ICP
//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