Skip to content

Instantly share code, notes, and snippets.

@sjwaight
Last active March 28, 2023 00:46
Show Gist options
  • Save sjwaight/c05cce90deb98d9d9186acfebc2d4246 to your computer and use it in GitHub Desktop.
Save sjwaight/c05cce90deb98d9d9186acfebc2d4246 to your computer and use it in GitHub Desktop.
Sample Copilot suggestion sample with comments
//CHCP: Start
/*
Model release: x.xxx.xx
Model date: 2023-03-28
Prompt: a function to calculate the sum of two numbers
*/
public int Sum(int a, int b)
{
return a + b;
}
//GHCP: End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment