├── .gitignore ├── LICENSE.md ├── README.md ├── cmd ├── root.go ├── run.go ├── translate.go └── version.go ├── test_v_files ├── guess.v ├── hello_world.v ├── hello_world_interpolated.v ├── hello_world_interpolated2.v ├── hello_world_module.v └── links_scraper2.v ├── translate.txt ├── translate ├── run.go ├── translate.go └── translate_test.go └── v2go.go /.gitignore: -------------------------------------------------------------------------------- 1 | /v2go 2 | *~ 3 | /test_v_files/*.go 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/cmd/run.go -------------------------------------------------------------------------------- /cmd/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/cmd/translate.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/cmd/version.go -------------------------------------------------------------------------------- /test_v_files/guess.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/test_v_files/guess.v -------------------------------------------------------------------------------- /test_v_files/hello_world.v: -------------------------------------------------------------------------------- 1 | println('Hello, World!') 2 | -------------------------------------------------------------------------------- /test_v_files/hello_world_interpolated.v: -------------------------------------------------------------------------------- 1 | name := 'World' 2 | println('Hello, $name!') 3 | -------------------------------------------------------------------------------- /test_v_files/hello_world_interpolated2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/test_v_files/hello_world_interpolated2.v -------------------------------------------------------------------------------- /test_v_files/hello_world_module.v: -------------------------------------------------------------------------------- 1 | module main 2 | 3 | println('Hello, World!') 4 | -------------------------------------------------------------------------------- /test_v_files/links_scraper2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/test_v_files/links_scraper2.v -------------------------------------------------------------------------------- /translate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/translate.txt -------------------------------------------------------------------------------- /translate/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/translate/run.go -------------------------------------------------------------------------------- /translate/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/translate/translate.go -------------------------------------------------------------------------------- /translate/translate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/translate/translate_test.go -------------------------------------------------------------------------------- /v2go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elimisteve/v2go/HEAD/v2go.go --------------------------------------------------------------------------------