Skip to content

FEATURE/LAM-3 Initial implementation#4

Merged
RHDZMOTA merged 7 commits into
mainfrom
FEATURE/LAM-3
Mar 22, 2026
Merged

FEATURE/LAM-3 Initial implementation#4
RHDZMOTA merged 7 commits into
mainfrom
FEATURE/LAM-3

Conversation

@RHDZMOTA

Copy link
Copy Markdown
Member

Reference issue: #3

This PR contains an initial implementation of the core concepts for the micro-lambda idea:

  • Basic core entities such as MLambda and Arguments
  • A shared catalog called MLambdaCatalog containing shortcuts/aliases and facilitator methods.
  • A simple parser that enables the string-syntax.

Example:

from fred.mlambda.parser import MLambdaCatalog

print("Available aliases in the catalog")
for key in MLambdaCatalog:
    print(key)
from fred.mlambda.parser import MLambdaParser

out1 = MLambdaParser.from_string("${STROPS: hello, upper}").execute()
print(out1)

out2 = MLambdaParser.from_string("${RAND: a, b, c, k=1}").execute()
print(out2)

@RHDZMOTA RHDZMOTA merged commit 2dda711 into main Mar 22, 2026
4 checks passed
@RHDZMOTA RHDZMOTA temporarily deployed to PYPI Package Publishing March 22, 2026 23:24 — with GitHub Actions Inactive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant