Example: discussion board prompt for software 3.0 systems. prompt optimized for mistral-small:24b-instruct-2501-q4_K_M.
Prompt:
following interface defines a program logic. implement the program in python. its not necessary to implement the interface itself, its for explanation purposes only.
interface DiscussionBoard {
bool sendMessage(string message)
void printMessages()
# main loop should display messages and prompt for new message to send
void main()
}