SkycoinSynth

Results 13 comments of SkycoinSynth

Travis must do builds with modules enabled and with modules disabled. Some users will have problems and it will work for other users. --- There is no excuse however, why...

Example is here: https://github.com/skycoin/cx/tree/develop/examples But needs to be moved into own folder "http-server" example.

@arfan499 @amherag 1> Verify if this bug still exists. If it is fixed, then close bug 2> If bug still exists, then notify me. 3> And make sure we have...

@arfan499, test this. If issue still exists, then add to unit tests. If issue is fixed, notify me and close this ticket.

@arfan499 Can you create unit test for this. Put a break condition in "for true"" `for true { if i > 3: break } `

@arfan499 Can you try to run this one and report result. If it fails, then put in regression tests.

package main type TextInfo struct { Text str Font str Size f32 Wid f32 // caches string measure queries Hei f32 } func main() { var texts []TextInfo texts =...

Try this one `package main type TestStruct struct { Text str } func main() { var texts []TestStruct texts = []TestStruct{TestStruct{Text:"hmm"}} printf("len %d \n", len(texts)) texts = []TestStruct{TestStruct{Text:"hmmm"}} printf("len %d...

type TestStruct struct { Value int32 } func main() { var texts []TestStruct texts = []TestStruct{TestStruct{Value: 1}} printf("len %d \n", len(texts)) texts = []TestStruct{TestStruct{Value: 2}} printf("len %d \n", len(texts)) }`