Skip to content

FEATURE/LAM-3 Initial implementation - #4

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

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

This branch was previously deployed

1 inactive deployment
PYPI Package Publishing — 665d2186 Deployed Mar 22, 2026 by RHDZMOTA via Python Package Build and Publish for fred-mlambda #2
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