hoshi-lang dev
Yet another programming language
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1//
2// hoshi-lsp — Language Server for hoshi-lang
3// Entry point
4//
5
6#include "server.h"
7#include <cstdio>
8
9int main(int argc, const char **argv) {
10 // if (argc > 1) {
11 // freopen(argv[1], "r", stdin);
12 // }
13 lsp::LspServer server;
14 server.run();
15 return 0;
16}
int main()
Definition loop.cpp:3