You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 495 B

1234567891011121314151617
  1. /*
  2. * This project, is at this moment used for testing and debugging the new and experimental Slash Commands.
  3. * After all testing has been done, and the project is ready to be integrated into the main Discord.Net ecosystem
  4. * this project should be re-made into one that could be used as an example usage of the new Slash Command Service.
  5. */
  6. using System;
  7. namespace SlashCommandsExample
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Hello World!");
  14. }
  15. }
  16. }