Condor icon indicating copy to clipboard operation
Condor copied to clipboard

A fast, simple, and intelligent new programming language

Results 8 Condor issues
Sort by recently updated
recently updated
newest added

When running the following code: ```go import "println" from "console" int ten1 = 10; float tenf = 10.1; double tend = 10.1; long tenl = 10.1; println(ten1 + 10); println(tenf...

bug

When running ```./build/condor```, running in shell mode, the usage of the left, up, down, and right arrow does not work. The symbol ```[^A``` or something like that appear.

bug
Shell

Create a debugger for CondorLang. Possibly similar to gdb.

Feature

The GC is not working properly when there is recursion. [See the Code](https://github.com/CondorLang/Condor/blob/master/src/condor/execute/execute.cc) ## Example Code: ``` go import "println" from "console" func fib(int n){ println("-> " + n); if...

When running the following code: ```go object Fruit{ private string name; func Fruit(string name){ this.name = name; } func getName() return this.name; } Fruit apple = new Fruit("Apple"); ``` The...

bug

The following code does not increase memory: ```go for (int i = 0; i < 100; i++) var a = 10; ``` The memory is under control, meaning, the garbage...

bug

When we are calling an import or an include inside of a file, the requested file is parsed and compiled each time it's called. See https://github.com/CondorLang/Condor/blob/master/src/condor/types/script/script.cc#L243 # TODO - [...

bug

Hi, I saw your post on Quora: https://www.quora.com/How-can-I-find-people-to-contribute-to-my-open-source-Github-project/draft I'm the one who said: " Post in Open Source (and eventually on CompSci/Soft Eng) groups/communities to get people to eventually contribute....

Syntax Feature Request