Skip to content

Instantly share code, notes, and snippets.

View adilw3nomad's full-sized avatar

adilw3nomad adilw3nomad

  • Somewhere
View GitHub Profile
# Augmented Coding Instructions for GitHub Copilot
This instructions file integrates proven patterns for AI-assisted software development while actively combating common obstacles and anti-patterns.
---
## 🎯 Core Operating Principles
### Active Partnership (Not Silent Compliance)
**EXTREMELY IMPORTANT:**
package main
import (
"bufio"
"encoding/csv"
"fmt"
"io"
"log"
"os"
"strings"
package main
import (
"bufio"
"encoding/csv"
"fmt"
"log"
"os"
"strings"
)
package main
import (
"bufio"
"encoding/csv"
"fmt"
"log"
"os"
)
package main
import (
"bufio"
"encoding/csv"
"fmt"
"log"
"os"
)
package main
import (
"encoding/csv"
"fmt"
"log"
"os"
)
func main() {
shell
06:56 $ go test
PASS
ok github.com/adilw3nomad/GopherQuiz 0.004s
func CheckAnswer(answer string, correctAnswer string) string {
if answer == correctAnswer {
return “Correct! Well done”
} else {
return (“WRONG! Answer is: “ + correctAnswer)
}
}
shell
06:51 $ go test
--- FAIL: TestCheckIncorrectAnswer (0.00s)
main_test.go:15: CheckIncorrectAnswer = Correct! Well done; want 'WRONG! Answer is: 2'
FAIL
exit status 1
FAIL github.com/adilw3nomad/GopherQuiz 0.005s
go
func CheckAnswer(string, string) string {
return "Correct! Well done"
}