C · 213 bytes Raw Blame History
1 #include <stdio.h>
2
3 // Test file for LSP integration
4 int main() {
5 printf("Hello from LSP test!\n");
6
7 int x = 10;
8 int y = 20;
9 int result = x + y;
10
11 printf("Result: %d\n", result);
12 return 0;
13 }