{"id":26054786,"url":"https://github.com/sunny-dee-71/simp-script","last_synced_at":"2025-10-26T00:10:04.919Z","repository":{"id":275826890,"uuid":"927231552","full_name":"sunny-dee-71/Simp-Script","owner":"sunny-dee-71","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-06T14:29:23.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-06T15:32:34.775Z","etag":null,"topics":["language","programming","simpscript","ss"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"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/sunny-dee-71.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":"2025-02-04T16:12:58.000Z","updated_at":"2025-03-06T14:32:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"95121993-7a28-41a9-9fb7-90f28c0c6773","html_url":"https://github.com/sunny-dee-71/Simp-Script","commit_stats":null,"previous_names":["sunny-dee-71/simp-script"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sunny-dee-71/Simp-Script","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunny-dee-71%2FSimp-Script","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunny-dee-71%2FSimp-Script/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunny-dee-71%2FSimp-Script/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunny-dee-71%2FSimp-Script/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunny-dee-71","download_url":"https://codeload.github.com/sunny-dee-71/Simp-Script/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunny-dee-71%2FSimp-Script/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281039544,"owners_count":26433802,"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","status":"online","status_checked_at":"2025-10-25T02:00:06.499Z","response_time":81,"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":["language","programming","simpscript","ss"],"created_at":"2025-03-08T09:59:54.820Z","updated_at":"2025-10-26T00:10:04.891Z","avatar_url":"https://github.com/sunny-dee-71.png","language":"C#","readme":"﻿# **SimpScript Features**  \n\n### **📝 Basic Commands**\n- **`say [expression]`** → Prints a message to the console.  \n  - Example: `say \"Hello, World!\"`  \n- **`set [variable] = [value]`** → Assigns a value to a variable.  \n  - Example: `set name = \"Sunny\"`  \n- **`set [variable] = input \"[prompt]\"`** → Prompts user input and stores it in a variable.  \n  - Example: `set name = input \"Enter your name\"`  \n\n---\n\n### **🔢 Expressions \u0026 Operations**\n- Supports **string concatenation** with `+`.  \n  - Example: `say \"Hello, \" + name`  \n- Supports **math operations** (`+`, `-`, `*`, `/`).  \n  - Example: `set x = 5 + 3`  \n- Supports **variable replacement** in expressions.  \n  - Example: `say x + 2` (if `x = 5`, prints `7`).  \n\n---\n\n### **🔁 Loops**\n- **Fixed Loop:** `repeat [number] times` → Loops a set number of times.  \n  - Example:  \n    ```plaintext\n    repeat 3 times\n        say \"Looping!\"\n    end\n    ```\n- **Conditional Loop:** `repeat while [condition]` → Loops while a condition is true.  \n  - Example:  \n    ```plaintext\n    set x = 0\n    repeat while x \u003c 5\n        say \"x is \" + x\n        set x = x + 1\n    end\n    ```\n- **Range Loop:** `repeat [var] from [start] to [end]` → Loops through a range.  \n  - Example:  \n    ```plaintext\n    repeat i from 1 to 5\n        say \"Number \" + i\n    end\n    ```\n\n---\n\n### **❓ Conditional Statements**\n- **If Statements:** `if [condition]` → Executes code only if the condition is met.  \n  - Example:  \n    ```plaintext\n    set x = 5\n    if x \u003e 3\n        say \"x is greater than 3\"\n    end\n    ```\n- **Supported Conditions:**  \n  - `==` (equals)  \n  - `!=` (not equals)  \n  - `\u003e` (greater than)  \n  - `\u003c` (less than)  \n  - `\u003e=` (greater than or equal to)  \n  - `\u003c=` (less than or equal to)  \n\n---\n\n### **🎯 Examples**\n#### **Full Program**\n```plaintext\nsay \"What is your name?\"\nset name = input \"Enter your name\"\nsay \"Hello, \" + name\n\nset x = 5\nsay x + \" is set to \" + x\n\nif x \u003e 3\n    say x + \" is greater than 3\"\nend\n\nrepeat 3 times\n    say \"Looping!\"\nend\n\nrepeat i from 1 to 3\n    say \"Counting: \" + i\nend\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunny-dee-71%2Fsimp-script","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunny-dee-71%2Fsimp-script","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunny-dee-71%2Fsimp-script/lists"}