All checks were successful
Sophia Tests / tests (push) Successful in 48m54s
A few references to oracles still remain, but they have been removed as a feature, at least. Reviewed-on: #985 Reviewed-by: Ulf Wiger <ulfwiger@qpq.swiss> Co-authored-by: Craig Everett <zxq9@zxq9.com> Co-committed-by: Craig Everett <zxq9@zxq9.com>
19 lines
519 B
Erlang
19 lines
519 B
Erlang
%%%-------------------------------------------------------------------
|
|
%%% @author Radosław Rowicki
|
|
%%% @copyright (C) 2025, QPQ AG
|
|
%%% @copyright (C) 2019, Aeternity Anstalt
|
|
%%% @doc
|
|
%%% Standard library for Sophia
|
|
%%% @end
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-module(so_stdlib).
|
|
-vsn("9.0.0").
|
|
|
|
-export([stdlib_include_path/0]).
|
|
|
|
stdlib_include_path() ->
|
|
{file, BEAM} = code:is_loaded(?MODULE),
|
|
filename:join(filename:dirname(filename:dirname(BEAM)), "priv/stdlib").
|
|
|