{"id":16871634,"url":"https://github.com/phase/lamb","last_synced_at":"2026-05-16T13:02:14.927Z","repository":{"id":34251268,"uuid":"38135043","full_name":"phase/lamb","owner":"phase","description":"The Lamb Programming Language","archived":false,"fork":false,"pushed_at":"2015-06-26T23:34:19.000Z","size":160,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-02T15:49:19.990Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://jadonfowler.xyz/lamb","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phase.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-26T21:35:06.000Z","updated_at":"2022-04-29T14:29:17.000Z","dependencies_parsed_at":"2022-07-14T19:00:42.278Z","dependency_job_id":null,"html_url":"https://github.com/phase/lamb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phase/lamb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phase%2Flamb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phase%2Flamb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phase%2Flamb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phase%2Flamb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phase","download_url":"https://codeload.github.com/phase/lamb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phase%2Flamb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33103970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T15:09:20.976Z","updated_at":"2026-05-16T13:02:14.883Z","avatar_url":"https://github.com/phase.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"#Lamb\nLamb is a interpreted language that revolves around [Lambda Calculus].\n\nVariables are made by putting the variable name, a `:` , and a value\n\n```javascript\nhello:“Hello World”\n```\n\nFunctions are written in Lambda Calculus notation\n\n```javascript\nsquare:λx.x*x\nadd:λx.λy.x+y\n```\n\nLamb is translated in JavaScript code through a Java ScriptEngine, meaning we can put JS code within our Lamb code\n\n```javascript\npower:λx.λy.Math.pow(x,y)\n```\n\nTo use a function, you can call it variables or other arguments\n\n```javascript\ntwo:2\nadd(two,3)\n```\n\nYou can also assign the return of a function to a variable\n\n```javascript\nh:2\nh:add(h,h)\n```\n\n### Hello World\n\nReturned values are printed out, so all we have to do is return the string “Hello World”\n\n```javascript\n\"Hello World\"\n```\n\n  [Lambda Calculus]: https://en.m.wikipedia.org/wiki/Lambda_calculus\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphase%2Flamb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphase%2Flamb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphase%2Flamb/lists"}