shithub
fortrangoingonforty
/
facsimile
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
facsimile
Public
Watch
0
Fork
0
Star
0
facsimile
/
tests
/
lsp
/
sample.c
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
}