anko icon indicating copy to clipboard operation
anko copied to clipboard

Scriptable interpreter written in golang

Results 25 anko issues
Sort by recently updated
recently updated
newest added

``` a = []int{0: 0xFF, 10: 0xFF} ```

First of all, thanks to this library, it is a perfect script implementation, can the IDE plugin be intelligently prompted?

how can i create a function like [Lua](http://www.lua.org/) function [math.random([m[, n]])](http://www.lua.org/manual/5.3/manual.html#pdf-math.random) When called without arguments, returns a pseudo-random float with uniform distribution in the range [0,1). When called with two...

1. https://github.com/mattn/anko/blob/670757039e489346bed6f8d00e2ece4e3f94c5d8/vm/vmToX.go#L28-L71 2. https://github.com/mattn/anko/blob/670757039e489346bed6f8d00e2ece4e3f94c5d8/core/toX.go#L16-L39 Should it be unified, or is there any reason, so it needs to be inconsistent? If so, is it possible to extend these two based on...

this is ok in anko,but it should be not ok ``` {script: `1 == 1.1`, runOutput: true}, // convert 1.1 to 1 , so return true {script: `1.1 == 1`,...

I wonder if it possible to add ssh library. Currently making ssh connection and run remote command is too much boilerplate in Go - https://gist.github.com/erikdubbelboer/f62a109d8e8798a11eb89ed494491953. If we can simplify this...

When attempting to build on arm, I get this: `src/github.com/mattn/anko/builtins/math/big/big.go:19: constant 4294967295 overflows int` and the build fails.

As the title, the readme is too simple.

Hi, Need ability to load a new librarys just by adding a file in near of the project(like php/python extensions) without rebuild anko. example in near of output anko file...

enhancement