Skip to main content
Glama
simple.cpp579 B
// Simple test program for basic breakpoint testing #include <iostream> int add(int a, int b) { int result = a + b; // Line 6: good for breakpoint return result; } int multiply(int a, int b) { int result = a * b; // Line 11 return result; } int main(int argc, char* argv[]) { int x = 10; // Line 16 int y = 20; // Line 17 int sum = add(x, y); // Line 19 int product = multiply(x, y); // Line 20 std::cout << "Sum: " << sum << std::endl; // Line 22 std::cout << "Product: " << product << std::endl; // Line 23 return 0; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/benpm/claude_lldb_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server