Klip icon indicating copy to clipboard operation
Klip copied to clipboard

Results 6 Klip issues
Sort by recently updated
recently updated
newest added

How to use the Compiler, it says "IndexOutOfRange" error. @TimeLoad00

Hello there, I saw your Reddit post that you are looking forward to making tutorials. I would love to see them; I really want to create a simple programming language....

To avoid addition when attempting to subtract, [this line](https://github.com/TimeLoad00/Klip/blob/master/KlipRT/KlipRT/Runtime.cs#L123) ```stack.Push(value1 + value2);``` in the ```else if (opcode == Opcodes.sub)``` block should be changed to ```stack.Push(value2 - value1);``` ``` else if...

**file.txt** ``` import system function Main() { name = "test" PrintLine(name) // Prints "test" PrintLine(name) // Prints 0 } ``` When the [call block](https://github.com/TimeLoad00/Klip/blob/master/KlipRT/KlipRT/Runtime.cs#L302) is run, it stores the list...

RightParan was meant to be RightBrace.

Hey, nice project. I want to suggest to use the enum values in the `Parser` instead of comparing strings. You have everything in place, but you `.toString()` and compare it...