We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49ec520 commit 3ac739cCopy full SHA for 3ac739c
apps/elixir_ls_utils/lib/launch.ex
@@ -1,4 +1,7 @@
1
defmodule ElixirLS.Utils.Launch do
2
+ @compiled_elixir_version System.version()
3
+ @compiled_otp_version System.otp_release()
4
+
5
def start_mix do
6
# FIXME: Private API
7
Mix.start()
@@ -13,6 +16,11 @@ defmodule ElixirLS.Utils.Launch do
13
16
def print_versions do
14
17
IO.inspect(System.build_info()[:build], label: "Elixir version")
15
18
IO.inspect(System.otp_release(), label: "Erlang version")
19
20
+ IO.puts(
21
+ "ElixirLS compiled with Elixir #{@compiled_elixir_version}" <>
22
+ " and erlang #{@compiled_otp_version}"
23
+ )
24
end
25
26
def language_server_version do
0 commit comments