[go-nuts] Halting Problem

2020-12-10 Thread Tambet Väli
Isn't this kind of a solution to a Halting Problem, if code is able to detect another, which has the same kind of halting problem? For example: func Halting(a, iterate bool) { if iterate { atrue, afalse bool atrue = Halting(true, false) afalse = Halting(false, false) } For a {

[go-nuts] Pointer Abstract

2020-12-09 Thread Tambet Väli
Hello! I havent reached Google Go for quite a while, but I am programming my own programming language (with Julia - I became quite decisive when it could not decide, whether 1im or 2im is bigger for imaginary numbers) and I decided one important thing about Pointers. Meanwhile I worked with t