Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/99thedark/sulfur
Fourth try at a programming language
https://github.com/99thedark/sulfur
compiler language llvm programming-language sulfur sulfur-lang
Last synced: about 1 month ago
JSON representation
Fourth try at a programming language
- Host: GitHub
- URL: https://github.com/99thedark/sulfur
- Owner: 99TheDark
- License: gpl-3.0
- Created: 2023-08-15T16:48:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-21T19:06:00.000Z (about 1 year ago)
- Last Synced: 2023-11-21T20:28:03.262Z (about 1 year ago)
- Topics: compiler, language, llvm, programming-language, sulfur, sulfur-lang
- Language: Go
- Homepage:
- Size: 176 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Sulfur
Fourth try making a programming language. Last time had some hiccups on assembling the AST, clanky type correction and scope. This time hoping I'll get further :DSulfur is a statically and weakly typed programming language written in Go.
Inspired by Go, JavaScript, Rust, Julia, Odin, Zig, C#, Swift, Java and Kotlin
Compilation Steps
- File Reader
- Lexer
- Parser
- Type Inferrer
- Flow Analyzer (TODO)
- Optimizer (TODO)
- LLVM Code Generator
- Assembly Compiler
- Code Runner