{"id":19858264,"url":"https://github.com/tharukrenuja/pascal","last_synced_at":"2026-03-05T15:32:31.634Z","repository":{"id":111924831,"uuid":"497184563","full_name":"TharukRenuja/Pascal","owner":"TharukRenuja","description":"Simple Pascal Programs for G.C.E. O/L ICT","archived":false,"fork":false,"pushed_at":"2022-06-01T04:25:57.000Z","size":64,"stargazers_count":8,"open_issues_count":0,"forks_count":6,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-28T23:57:02.246Z","etag":null,"topics":["pascal","pascal-programming","simple-programs","slbots"],"latest_commit_sha":null,"homepage":"https://github.com/TharukRenuja/Pascal","language":"Pascal","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/TharukRenuja.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}},"created_at":"2022-05-28T01:44:05.000Z","updated_at":"2024-07-18T15:46:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"f355b284-c2e9-4423-9f9d-8178fa7d31df","html_url":"https://github.com/TharukRenuja/Pascal","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TharukRenuja/Pascal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TharukRenuja%2FPascal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TharukRenuja%2FPascal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TharukRenuja%2FPascal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TharukRenuja%2FPascal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TharukRenuja","download_url":"https://codeload.github.com/TharukRenuja/Pascal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TharukRenuja%2FPascal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30133234,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T14:41:47.141Z","status":"ssl_error","status_checked_at":"2026-03-05T14:41:21.567Z","response_time":93,"last_error":"SSL_read: 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":["pascal","pascal-programming","simple-programs","slbots"],"created_at":"2024-11-12T14:22:37.370Z","updated_at":"2026-03-05T15:32:31.616Z","avatar_url":"https://github.com/TharukRenuja.png","language":"Pascal","readme":"# Simple Pascal Programs\nSimple Pascal Programs for G.C.E. O/L ICT Examination\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"./etc/Pascal.png\" width='400\"'\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/TharukRenuja/Pascal\"\u003e\n    \u003cimg src=\"./etc/made-with-pascal.svg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n### Pascal Hello World Example\nA simple pascal code that would print the words \"Hello, World!\"\n```\nprogram HelloWorld(input,output);\n\nbegin\n   writeln('Hello, World!');\n   readln();\nend.\n```\n\n#### Standard data types in Pascal\n\n- Integer - Plus or minus whole numbers\n  ``` Example : 0, 46, -12 ```\n- Real - Plus or minus decimal numbers\n  ``` Example : 0.0, 25.68 ```\n- Boolean\n  ``` True or False ```\n- Char - Any character of the key board\n  ``` Example : ‘k’, ‘#’, ‘7‘ ```\n- String - Any sequence of characters\n  ``` Example : ‘ICT’, ‘programming’, ‘Pascal’ ```\n\n#### Operators We Used\n\n- Algebra operators\n- Comparison operator\n-  Logical operators\n    - AND operator\n    - OR operator\n    - NOT operator\n\n### Selection\n\n- IF Statement [``Example Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Pascal%20Codes/IF/)\n    - Nested IF [``Example Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Pascal%20Codes/IF/Nested%20IF/)\n\n### Repetition\n- FOR\n  - FOR – DO Structure [``Example Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Pascal%20Codes/For/FOR-DO/)\n  - FOR – DO Loop Structure [``Example Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Pascal%20Codes/For/FOR-DO%20Loop/)\n- WHILE\n  - WHILE DO Loop Structure [``Example Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Pascal%20Codes/While%20DO%20Loop/)\n- REPEAT UNTIL\n  - REPEAT UNTIL Structure [``Example Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Pascal%20Codes/Repeat%20Until/)\n\n#### Enjoying with Pascal\n- [``Simple Tools``](https://github.com/TharukRenuja/Pascal/tree/main/Enjoy%20Pascal/Simple%20Tools/)\n- [``Prank Programs``](https://github.com/TharukRenuja/Pascal/tree/main/Enjoy%20Pascal/Prank%20Programs/)\n\n### Contributors\n![GitHub Contributors Image](https://contrib.rocks/image?repo=TharukRenuja/Pascal)\n\n [![SLBots](https://img.shields.io/badge/SLBotOfficial-Channel-orange?style=style=flat\u0026logo=telegram)](https://telegram.dog/SLBotOfficial)   [![SLBots](https://img.shields.io/badge/SLBotOfficial-Support-red?style=flat\u0026logo=telegram)](https://telegram.dog/trtechguide)  [![SLBots](https://img.shields.io/badge/SLBots-Website-red?style=flat\u0026logo=CodersRank)](https://www.slbots.org)   [![MIT license](https://img.shields.io/badge/License-MIT-blue?style=flat)](https://github.com/TharukRenuja/Pascal/blob/main/LICENSE)  [![Open Source](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/TharukRenuja/Pascal)\n \n Should any be missing kindly let us know at [Developers](https://t.me/SLBotOfficial) or simply submit a pull request on the readme.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftharukrenuja%2Fpascal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftharukrenuja%2Fpascal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftharukrenuja%2Fpascal/lists"}