Vidya

Results 20 issues of Vidya

@asahi3g commented on Mar 12 **To Reproduce** ``` package main func foo()() { printf("foo\n") } func main()() { foo() () } ``` **Expected behavior** Compilation error **Screenshots** ``` foo ```...

@corpusc commented on Jul 3 **Describe**: It apparently ignores everything after the comma, and works as if you just typed the 1st (leftmost) number. **To Reproduce** Steps to reproduce the...

@corpusc commented on Jun 27 **To Reproduce** 1. Enter this code: package main func main() { var i [][]i32 = [][]i32{ {1, 2}, {3, 4} } } 2. See error:...

@canhdoan commented on Jul 26 **Describe the bug** Can't execute an infinite loop with true value as the [link](https://github.com/skycoin/cx#for-loop) **To Reproduce** See the test source ``` package main func main()...

bug

@0pcom commented on Aug 9 **Describe the bug** A cx program is defined which contains reference to functions with the same name from imported packages: ``` package main import "foo"...

@amherag commented on Feb 1 **Describe the bug** Dereferencing a pointer to a slice is not working correctly when used in append or when trying to access a value from...

bug

@asahi3g commented on Mar 12 **To Reproduce** ``` package main func main()() { var b bool = true for b { printf("true\n") } } ``` **Expected behavior** Test should compile...

@asahi3g commented on Jul 3 **To Reproduce** ``` package main func main()() { i := str.i32("a") k := str.i32("-2147483649") } ``` **Expected behavior** Parsing methods (str.*) should return an error...

@olemis commented on Dec 31, 2018 **Is your feature request related to a problem? Please describe.** Errors are hard to understand in terms of CX code due to the fact...

@amherag commented on Jan 24 **Describe the bug** `PrintProgram `the function responsible for printing a CX program's AST needs to be refactored and improved. The whole function can be split...