One
One copied to clipboard
One (onelang) is an open-source system programming language that makes it easy to build reliable, efficient and performant software. (release as soon) 1๏ธโฃ ๐ ๐ฉฑ
@all-contributors please add @DanyB0 for translation
Hi John, Would you please invite @DanyB0? He can probably translate to italian. Thanks, and welcome.
`pre-commit` fails when MD053 is removed Run markdownlint.........................................................Failed - hook id: markdownlint - exit code: 1 README_AR.md:447:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image...
As you see in some file for example `lexer.test.c` file I want to implement items of tokens in several lines.. https://github.com/One-Language/One/blob/master/test/lexer.test.c#L82 for example: ``` lexer_tests[lexer_tests_count++] = (LexerTest){"1\r\n 2\n3\n4", {token_make(TOKEN_VALUE_NUMBER), token_make(TOKEN_SKIP_WHITESPACE_LINE),...
Hi, I took the initial phase of the parser forward and it works well and detects **tokens**. Now I need help arranging operations and operators. Does anyone want to help?...
Feels much better now, I've missed much while contributing for the first time. There were some mistakes caused by lack of understanding of what some parts mean exactly. I still...
`pre-commit` now requires `Docker` to run the `hadolint` hook ``` Dockerfile:1 DL3007 warning: Using latest is prone to errors if the image will ever update. Pin the version explicitly to...
**Is your feature request related to a problem? Please describe.** Would like to auto greet new people **Describe the solution you'd like** https://github.com/marketplace/actions/first-interaction **Describe alternatives you've considered** Manual is slower...
https://www.conventionalcommits.org/en/v1.0.0/ "The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it...
As you know **LEXER** stage is mostly ready-to-production and we already defined all and most keywords. so we need so many more unit tests at the `lexer.test.c` file. https://github.com/One-Language/One/blob/master/test/lexer.test.c#L75 I...