Skip to content

Instantly share code, notes, and snippets.

@fermartz
Last active January 16, 2023 18:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fermartz/5582fafa87f3c99f32d4c642b08f9601 to your computer and use it in GitHub Desktop.
Save fermartz/5582fafa87f3c99f32d4c642b08f9601 to your computer and use it in GitHub Desktop.
Motoko Greeting
actor {
public func greeting( i : Text) : async Text {
"Hello, there " # i # "!!!";
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment