Last active
March 28, 2023 00:46
-
-
Save sjwaight/c05cce90deb98d9d9186acfebc2d4246 to your computer and use it in GitHub Desktop.
Sample Copilot suggestion sample with comments
This file contains 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
//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