{"id":28600869,"url":"https://github.com/inunix3/monolog","last_synced_at":"2025-06-11T14:39:12.695Z","repository":{"id":297985622,"uuid":"945752691","full_name":"inunix3/monolog","owner":"inunix3","description":"Simple interpreted C-like programming language.","archived":false,"fork":false,"pushed_at":"2025-06-08T18:22:42.000Z","size":3659,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-08T19:27:30.197Z","etag":null,"topics":["c","c-like","c11","homemade-programming-language","interpreted-programming-language","just-for-fun","programming-language"],"latest_commit_sha":null,"homepage":"","language":"C","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/inunix3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2025-03-10T04:20:41.000Z","updated_at":"2025-06-08T18:22:45.000Z","dependencies_parsed_at":"2025-06-08T19:38:06.807Z","dependency_job_id":null,"html_url":"https://github.com/inunix3/monolog","commit_stats":null,"previous_names":["inunix3/monolog"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inunix3%2Fmonolog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inunix3%2Fmonolog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inunix3%2Fmonolog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inunix3%2Fmonolog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inunix3","download_url":"https://codeload.github.com/inunix3/monolog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inunix3%2Fmonolog/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259280919,"owners_count":22833475,"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":["c","c-like","c11","homemade-programming-language","interpreted-programming-language","just-for-fun","programming-language"],"created_at":"2025-06-11T14:39:11.833Z","updated_at":"2025-06-11T14:39:12.676Z","avatar_url":"https://github.com/inunix3.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# monolog\n\nA simple interpreted C-like programming language.\n\nThis was a school project, so the language is toyish and the interpreter is pretty simple.\n\nAnyway, created just for fun.\n\n```c\nprintln(\"Hello, World!\");\n\nvoid fizzbuzz(int n) {\n    if (n \u003c= 0) {\n        return;\n    }\n\n    for (int i = 1; i \u003c= 100; ++i) {\n        print($i + \"... \");\n\n        if (i % 15 == 0) {\n            println(\"fizz buzz\");\n        } else if (i % 3 == 0) {\n            println(\"fizz\");\n        } else if (i % 5 == 0) {\n            println(\"buzz\");\n        } else {\n            println(\"\");\n        }\n    }\n}\n\nfizzbuzz(100);\n```\n\n## Features \n\n- Imperative\n- Infix notation (`2 + 3 / 0`)\n- Arithmetic (`+, -, *, /, %`)\n- Logic (`!, ==, !=, \u003c, \u003e, \u003c=, \u003e=, \u0026\u0026, ||`)\n- Basic branching statements (`if, else`)\n- Loops (`while, for, break, continue`)\n- Block statements\n- Functions\n- Builtin types:\n    - 64-bit signed integers (`int`)\n    - Mutable, resizable strings (`string`)\n    - Option types (`T?`)\n    - Arrays (`[T]`)\n- REPL\n\n## Examples and documentation\n\nExample programs are located in `examples/`.\n\nReference for the language you can find in `docs/`.\n\n## Building\n\nSee documentation in `docs/`.\n\n## License\n\nMonolog is licensed under the [MIT License](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finunix3%2Fmonolog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finunix3%2Fmonolog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finunix3%2Fmonolog/lists"}