To get your Microsoft workshop certificate, add a file with code that does something (eg:Sorting Codes,Name printing,whatever) in your favuorite language with metadata and make a PR in this Repo.
Hint: Fork → Clone → Add the file → Commit and Push → Open Pull Request. After your pull request is accepted and merged, you can download your certificate.
For example: If my college student id is B422056 and my name Soubhik Kumar Gon, I need to add a file with:
/*
Name: Soubhik Gon
ID : B422056
This Code Prints Hello World in Go :D
*/
package main
import "fmt"
func printText() {
fmt.Println("Hello World ;) ");
}
func main() {
for i:=0;i<69;i++ {
printText();
}
}