{"id":16714467,"url":"https://github.com/iafisher/venice","last_synced_at":"2025-04-10T06:12:34.724Z","repository":{"id":54637696,"uuid":"324233245","full_name":"iafisher/venice","owner":"iafisher","description":"A modern, high-level, statically-typed programming language","archived":false,"fork":false,"pushed_at":"2022-09-05T23:40:47.000Z","size":1251,"stargazers_count":9,"open_issues_count":16,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-01T17:56:22.836Z","etag":null,"topics":["compiler","programming-language"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iafisher.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}},"created_at":"2020-12-24T20:41:57.000Z","updated_at":"2023-10-24T09:55:03.000Z","dependencies_parsed_at":"2023-01-17T21:16:15.502Z","dependency_job_id":null,"html_url":"https://github.com/iafisher/venice","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iafisher%2Fvenice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iafisher%2Fvenice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iafisher%2Fvenice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iafisher%2Fvenice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iafisher","download_url":"https://codeload.github.com/iafisher/venice/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248166925,"owners_count":21058481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["compiler","programming-language"],"created_at":"2024-10-12T21:05:11.317Z","updated_at":"2025-04-10T06:12:34.696Z","avatar_url":"https://github.com/iafisher.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Venice programming language\n**NOTE**: Venice is in the early stages of development, and not yet ready for use.\n\nVenice is a modern, high-level, statically-typed programming language. It pairs the elegance and expressiveness of Python with the safety and modern language features of Rust.\n\n\u003c!-- Venice's syntax is closest to Rust's, so we use that as the syntax declaration for the code block. --\u003e\n```rust\nimport map, join from \"itertools\"\n\nenum Json {\n  JsonObject(map\u003cstring: Json\u003e),\n  JsonArray(list\u003cJson\u003e),\n  JsonString(string),\n  JsonNumber(real),\n  JsonBoolean(bool),\n  JsonNull,\n}\n\nfunc serialize_json(j: Json) -\u003e string {\n  match j {\n    case JsonObject(obj) {\n      let it = (\"\\(key): \\(serialize_json(value))\" for key, value in obj);\n      return \"{\" ++ join(it, \", \") ++ \"}\";\n    }\n    case JsonArray(values) {\n      return \"[\" ++ join(map(values, serialize_json), \", \") ++ \"]\";\n    }\n    case JsonString(s) {\n      return s.quoted();\n    }\n    case JsonNumber(x) {\n      return string(x);\n    }\n    case JsonBoolean(x) {\n      return string(x);\n    }\n    case JsonNull {\n      return \"null\";\n    }\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiafisher%2Fvenice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiafisher%2Fvenice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiafisher%2Fvenice/lists"}