You've already forked gnatcoll-core
mirror of
https://github.com/AdaCore/gnatcoll-core.git
synced 2026-02-12 12:58:57 -08:00
17 lines
351 B
Ada
17 lines
351 B
Ada
with Ada.Environment_Variables;
|
|
|
|
package body Test_Python is
|
|
|
|
package Env renames Ada.Environment_Variables;
|
|
|
|
-----------------------
|
|
-- Python_Executable --
|
|
-----------------------
|
|
|
|
function Python_Executable return UTF8.UTF_8_String is
|
|
begin
|
|
return Env.Value ("PYTHON_EXEC_PATH");
|
|
end Python_Executable;
|
|
|
|
end Test_Python;
|