{"id":17300670,"url":"https://github.com/viown/seascript","last_synced_at":"2026-03-06T03:31:58.421Z","repository":{"id":48944446,"uuid":"365696542","full_name":"viown/SeaScript","owner":"viown","description":"A VM Based Programming Language","archived":false,"fork":false,"pushed_at":"2022-05-05T18:17:43.000Z","size":915,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-29T12:39:21.598Z","etag":null,"topics":["compiler","interpreter","language","programming-language","vm"],"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/viown.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":"2021-05-09T07:46:27.000Z","updated_at":"2024-12-15T11:25:23.000Z","dependencies_parsed_at":"2022-09-01T08:11:39.602Z","dependency_job_id":null,"html_url":"https://github.com/viown/SeaScript","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/viown/SeaScript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viown%2FSeaScript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viown%2FSeaScript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viown%2FSeaScript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viown%2FSeaScript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/viown","download_url":"https://codeload.github.com/viown/SeaScript/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viown%2FSeaScript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30160861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"online","status_checked_at":"2026-03-06T02:00:08.268Z","response_time":250,"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":["compiler","interpreter","language","programming-language","vm"],"created_at":"2024-10-15T11:29:43.623Z","updated_at":"2026-03-06T03:31:58.373Z","avatar_url":"https://github.com/viown.png","language":"C","readme":"﻿# SeaScript\n\nSeaScript is a simple, typeless programming language made in C.\n\nSeaScript is designed to be fast and reliable while maintaining the capabilities of a high-level language.\n\n# Example Program\n\nexample.ssc:\n\n    function wait(seconds) {\n        decl start = time(); // UNIX time\n\n        while ((time() - start) \u003c seconds) {}\n    }\n\n    wait(10);\n    print(\"Waited 10 seconds\");\n\nTo run this code:\n\n    ./SeaScript.exe example.ssc\n\nYou can also generate a bytecode file like this:\n\n    ./SeaScript.exe example.ssc --preserve\n\nThis will create a file `example.ssb` storing the bytecode which can be executed directly:\n\n    ./SeaScript.exe example.ssb\n   Which is faster as it doesn't have to recompile the source code each time you wish to run it.\n\n# Flags\n\n- `--version` - Shows the current SeaScript version\n- `--visualize-tokens` - Visualizes the token stream generated by SeaScript\n- `--parser-print` - Pretty prints the output generated by the parser\n- `--view` - Used to view the instructions from a bytecode file\n- `--preserve` - Preserves the bytecode generated by SeaScript onto a file which can be executed\n- `--benchmark` - Benchmark Seascript code\n\n# Build\n\nTo build this project make sure you have GCC installed, afterwards just run:\n```\nmake\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviown%2Fseascript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fviown%2Fseascript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviown%2Fseascript/lists"}