-
I'd like to make a release for various milestones in the repo. It looks like the first 1 coming up is 100 languages. We're just one away, and I figure I can add that tonight.
To kick things off, I…
jrg94 updated
6 years ago
-
So many new languages spring up, it'd be great to have a FAQ section that explains some things about Goby. If there is one, I'm sorry. I couldn't find it.
-
- Sawzall
In Bigtable, google present a language called Sawzall which is client supplied but can be **run on the address space of servers** https://static.googleusercontent.com/media/research.googl…
-
_____________________________________________________________________________________________________________
I encountered a bug or warning of some kind in one of my scripts. It concerns the use …
-
Using `if` with `then` causes the interpreter to panic:
Goby 0.1.6 😶 😈 👻
» if true then
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmen…
-
When I access an array in sliced form `Array[start, length]`, the interpreter crashes.
Sample command:
a = [0, 1, 2]
a[0, 3] # kaboom!
Exact run output (the interpreter overwrites th…
-
Hi, a few months ago I was also here posting my new language `Rooby` (it's called [`Goby`](https://github.com/goby-lang/goby) now). And after the crafting in past few months we finally released our `0…
-
I would like to use Goby within a Go application as a scripting language for a rule engine. Is it possible to sandbox Goby interpreter i.e disabling some libraries and functions.
Is this possible?
-
I've noticed that in Goby, the string literals `"true"` and `"false"` directly translate to boolean values (respectively, true and false).
Since this behavior is unique among the scripting language…
-
Conclusion: We shouldn't use Go's `sync.Map` to implement normal hash, because it's performance it's poor in normal condition. [Reference](https://medium.com/@deckarep/the-new-kid-in-town-gos-sync-map…