{"id":22804392,"url":"https://github.com/divinemonk/h3ll0_w0rld","last_synced_at":"2026-04-08T12:33:21.604Z","repository":{"id":130581795,"uuid":"357150148","full_name":"Divinemonk/h3ll0_w0rld","owner":"Divinemonk","description":"Here you will find how to write a 'Hello world' code in 10+ programming languages .","archived":false,"fork":false,"pushed_at":"2021-04-12T12:27:09.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T12:23:46.241Z","etag":null,"topics":["bash","c","c-plus-plus","c-sharp","css","go","helloworld","html","java","javascript","perl","php","programming-language","python","r","ruby","rust","sql","swift"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"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/Divinemonk.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-12T10:25:30.000Z","updated_at":"2021-05-02T14:05:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"5add228b-afb2-4f36-8079-c72a04cb2c71","html_url":"https://github.com/Divinemonk/h3ll0_w0rld","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Divinemonk/h3ll0_w0rld","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divinemonk%2Fh3ll0_w0rld","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divinemonk%2Fh3ll0_w0rld/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divinemonk%2Fh3ll0_w0rld/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divinemonk%2Fh3ll0_w0rld/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Divinemonk","download_url":"https://codeload.github.com/Divinemonk/h3ll0_w0rld/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Divinemonk%2Fh3ll0_w0rld/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31556232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T10:21:54.569Z","status":"ssl_error","status_checked_at":"2026-04-08T10:21:38.171Z","response_time":54,"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":["bash","c","c-plus-plus","c-sharp","css","go","helloworld","html","java","javascript","perl","php","programming-language","python","r","ruby","rust","sql","swift"],"created_at":"2024-12-12T10:08:03.052Z","updated_at":"2026-04-08T12:33:21.529Z","avatar_url":"https://github.com/Divinemonk.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# h3LL0_w0rLd\n\n## Hey , let's print \"Hello World!\" !!\n\n### * [Python](https://en.wikipedia.org/wiki/Python_(programming_language))\n```\nprint(\"Hello World!\")\n```\n\u003e helloworld.py\n\n---\n\n### * [Java](https://en.wikipedia.org/wiki/Java)\n```\nclass HelloWorld\n{\n  public static void main(String[] args) \n  {\n    System.out.println(\"Hello World!\"); \n  }\n}\n```\n\u003e helloworld.java\n\n---\n\n### * [JavaScript](https://en.wikipedia.org/wiki/JavaScript)\n```\nalert(\"Hello World!\");\n```\n\u003e helloworld.js\n\n---\n\n### * [C](https://en.wikipedia.org/wiki/C)\n```\n#include \u003cstdio.h\u003e\n\nint main() \n{\n  printf(\"Hello World!\");\n  return 0;\n}\n```\n\u003e helloworld.c\n\n---\n\n### * [C++](https://en.wikipedia.org/wiki/C++)\n```\n#include \u003ciostream\u003e\n\nint main() \n{\n  std::cout \u003c\u003c \"Hello World!\";\n  return 0;\n}\n```\n\u003e helloworld.c\n\n---\n\n### * [C#](https://en.wikipedia.org/wiki/C_Sharp_(programming_language))\n```\nusing System; \n\nnamespace HelloWorldApp \n{ \n  class Geeks \n  {\n    static void Main(string[] args) \n    {  \n      Console.WriteLine(\"Hello World!\");  \n      Console.ReadKey(); \n    } \n  } \n} \n```\n\u003e helloworld.cs\n\n---\n\n### * [Bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell))\n```\n#!/bin/bash\n\necho \"Hello World!\"\n```\n\u003e helloworld.sh\n\n---\n\n### * [Batch File](https://en.wikipedia.org/wiki/Batch_file)\n```\necho Hello World!\npause\n```\n\u003e helloworld.bat\n\n---\n\n### * [HTML](https://en.wikipedia.org/wiki/HTML)\n```\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n    \u003chead\u003e\n        \u003ctitle\u003eHello World!\u003c/title\u003e\n    \u003c/head\u003e\n    \u003cbody\u003e\n        \u003cp\u003eHello World!\u003c/p\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n\n```\n\u003e helloworld.html\n\n---\n\n### * [CSS](https://en.wikipedia.org/wiki/CSS)\n```\n\u003cstyle\u003e\nbody:before{\ncontent: \"Hello Word!\";\n}\n\u003c/style\u003e\n```\n\u003e helloworld.css\n\n---\n\n### * [PHP](https://en.wikipedia.org/wiki/PHP)\n```\n\u003c?php\n  echo \"Hello World!\";\n?\u003e\n```\n\u003e helloworld.php\n\n---\n\n### * [Ruby](https://en.wikipedia.org/wiki/Ruby)\n```\nputs \"Hello World!\"\n```\n\u003e helloworld.rb\n\n---\n\n### * [SQL](https://en.wikipedia.org/wiki/SQL)\n```\nBEGIN\ndbms_output.put_line (‘Hello World!');\nEND;\n/\n```\n\u003e helloworld.sql\n\n---\n\n### * [Swift](https://en.wikipedia.org/wiki/Swift_(programming_language))\n```\nprint(\"Hello, World!\")\n```\n\u003e helloworld.swift\n\n---\n\n### * [R](https://en.wikipedia.org/wiki/R_(programming_language))\n```\nprint(\"Hello World!\")\n```\n\u003e helloworld.r\n\n---\n\n### * [GO](https://en.wikipedia.org/wiki/Go_(programming_language))\n```\npackage main\n\nimport \"fmt\"\n\nfunc main() \n{\n    fmt.Println(\"hello world\")\n}\n```\n\u003e helloworld.go\n\n---\n\n### * [Perl](https://en.wikipedia.org/wiki/Perl)\n```\n#!/usr/bin/perl\n  \nuse strict;\nuse warnings;\n\nprint(\"Hello World\\n\");\n```\n\u003e helloworld.pl\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivinemonk%2Fh3ll0_w0rld","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdivinemonk%2Fh3ll0_w0rld","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivinemonk%2Fh3ll0_w0rld/lists"}