{"id":49488669,"url":"https://github.com/bichanna/dud","last_synced_at":"2026-05-01T03:05:33.638Z","repository":{"id":336339225,"uuid":"1137120284","full_name":"bichanna/dud","owner":"bichanna","description":"A programming language infused with lots of personal preferences for syntax, safety, and metaprogramming","archived":false,"fork":false,"pushed_at":"2026-02-04T00:14:21.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-04T11:52:30.622Z","etag":null,"topics":["c-language","compiler","language","programming-language","transpiler"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bichanna.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-18T23:58:24.000Z","updated_at":"2026-02-04T00:14:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bichanna/dud","commit_stats":null,"previous_names":["bichanna/dud"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/bichanna/dud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bichanna%2Fdud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bichanna%2Fdud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bichanna%2Fdud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bichanna%2Fdud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bichanna","download_url":"https://codeload.github.com/bichanna/dud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bichanna%2Fdud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32483430,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["c-language","compiler","language","programming-language","transpiler"],"created_at":"2026-05-01T03:04:38.634Z","updated_at":"2026-05-01T03:05:33.628Z","avatar_url":"https://github.com/bichanna.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dud\n\ndud is basically C for people who are lazy but want a fraction of the power of C. It's a programming language infused with lots of personal preferences for syntax, safety, and metaprogramming.\n\n## Goals\n\n- Basically C with a bit nicer syntax\n- Compiles to standard C code, ensuring compatibility\n- Automatic memory management through reference counting that handle circular references\n- Built-in implementations of dynamic arrays, hash maps, and other useful things\n- Use functions, types, and other stuff from C without too much fuss\n- Generics and protocols!\n- Zig-like modules, no more header files!\n\n## Examples\n\n```\ntype User = struct {\n  id: i32,\n  name: String,\n  boss: ^User,\n}\n\nfn main() {\n  // Stack allocation (No RC overhead, fast!)\n  let me: User = User(1, \"bichanna\", null);\n\n  // Heap allocation (Automatically reference counted)\n  let sister: ^User = heap User(2, \"sister\", null); // allocating on heap\n\n  // Look Ma, no '-\u003e'!\n  me.boss = sister;\n\n  println(\"Hi! My name is {} and my boss is {}\", me.name, me.boss.name);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbichanna%2Fdud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbichanna%2Fdud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbichanna%2Fdud/lists"}