diff options
author | Eduardo Julian | 2021-06-30 23:24:55 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-06-30 23:24:55 -0400 |
commit | 744ee69630de59ca3ba660b0aab6361cd17ce1b4 (patch) | |
tree | 329c11b8c3522c319c99ebd4d7c51ee0e7464bae /lux-python | |
parent | 6633cd42f2892ea71530ddeeb93a7e7c0b59faa3 (diff) |
"signature:" -> "interface:" & "structure:" -> "implementation:"
"signature" & "structure" feel like very ML-specific terminology and might not be easy on programmers unfamiliar with it.
Diffstat (limited to 'lux-python')
-rw-r--r-- | lux-python/source/program.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 0eac5a354..c014e8386 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -269,7 +269,7 @@ (function (execute! input) (org/python/util/PythonInterpreter::exec (_.code input) interpreter)))] (: (Host (_.Expression Any) (_.Statement Any)) - (structure + (implementation (def: evaluate! evaluate!) (def: execute! execute!) (def: (define! context input) @@ -318,7 +318,7 @@ _ (execute! definition) value (evaluate! context @global)] (wrap [global value definition])))))] - (structure + (implementation (def: evaluate! evaluate!) (def: execute! execute!) (def: define! define!) |