0 branches
Tree
Top files
Clone with HTTPS:
asteroids
gg, gx: deprecate `gx` and replace all occurences with `gg` (which now contains all the functionality of `gx`) (#24966)
last Aug 14
9.47 KB
call_c_from_v
all: replace `int` with `i32` in `fn C.name(x int) int` declarations (#26522)
last Feb 7
108 bytes
call_v_from_c
tools: cleanup entries from the hardcoded skip_files list in common.v (used by `v test`, `v test-self` etc); use the new `// vtest build:` syntax to mark the tests instead (#23918)
1 year ago
2.95 KB
call_v_from_python
tools: cleanup entries from the hardcoded skip_files list in common.v (used by `v test`, `v test-self` etc); use the new `// vtest build:` syntax to mark the tests instead (#23918)
1 year ago
1.7 KB
call_v_from_ruby
tools: cleanup entries from the hardcoded skip_files list in common.v (used by `v test`, `v test-self` etc); use the new `// vtest build:` syntax to mark the tests instead (#23918)
1 year ago
1.52 KB
coroutines
tools: cleanup entries from the hardcoded skip_files list in common.v (used by `v test`, `v test-self` etc); use the new `// vtest build:` syntax to mark the tests instead (#23918)
1 year ago
1.98 KB
cpu_features
examples: add a cpu_features/ folder, with several examples, using SSE and MMX assembly instructions (#22645)
1 year ago
9.74 KB
dynamic_library_loading
builder: fix dynamic library loading and cc improvements (fixes #16899)
last Feb 26
2.93 KB
eventbus
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
1.31 KB
get_weather
x.json2: rename Any.arr() to Any.as_array() for consistency with as_map(), as_map_of_string(); deprecate Any.arr() (#26455)
last Jan 28
3.09 KB
graphs
v: refactor $var to ${var} across entire repository, make vfmt always output the newer form `${expr}` (#26494)
last Feb 1
33.54 KB
jsonrpc
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
5.03 KB
pico
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
1.9 KB
regex
regex.pcre: add a backwards compatibility shim for examples, that use `vlang/pcre` (made using Gemini 3) (#26553)
last Feb 8
8.7 KB
ssl_server
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
17.73 KB
submodule
v.utils: fix module lookup if module import parts end with the word `modules` (#21083)
2 years ago
385 bytes
thread_safety
examples: fix some of the instructions in `examples/thread_safety/` (#22571)
1 year ago
5.93 KB
ttf_font
breaking,x.ttf: extract vlib/x/ttf/render_sokol_cpu.v in a separate module x.ttf.render_sokol, to enable headless programs, that do not use gg, to not depend on OpenGL, DX12, Metal etc, through sokol (#26477)
last Jan 31
7.14 KB
vcasino
examples,net.ftp,v.builder: remove remaining matches of `rg --multiline --multiline-dotall "continue\n\t+\}\n\t+\}\n\t+return" -B3 -A3 `
last Dec 22
3.47 KB
websocket
v: refactor $var to ${var} across entire repository, make vfmt always output the newer form `${expr}` (#26494)
last Feb 1
6.86 KB
animated_help_text.v
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
2.6 KB
asm.v
tools: cleanup entries from the hardcoded skip_files list in common.v (used by `v test`, `v test-self` etc); use the new `// vtest build:` syntax to mark the tests instead (#23918)
1 year ago
276 bytes
c_interop_wkhtmltopdf.v
checker: warn when a local variable shadows a function declaration (fixes #22685) (#27272)
last May 26
3.72 KB
cli.v
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
1.84 KB
cli_groups.v
cli: render command groups, inherited flags, examples and learn-more in --help (#27124)
last May 23
2.94 KB
custom_error.v
examples: add custom_error.v, that shows how to match over possible errors (#16265)
3 years ago
328 bytes
diff.v
vlib,tools: add an `arrays.diff` module, implement a simple platform independent tool `v diff file1.txt file2.txt` using it (#24428)
1 year ago
703 bytes
flag_layout_editor.v
examples: move flag/ .v files 1 level up, to prevent module lookup confusion for unrelated examples
last Dec 19
5.25 KB
function_types.v
doc: document `type Fn = fn (string) string` (type aliases) (#10471)
4 years ago
732 bytes
js_hello_world.v
examples: reduce completion friction, when doing the very common `v run examples/hello_world.v` in a shell
1 year ago
72 bytes
mini_calculator_recursive_descent.v
examples: cleanup and shorten mini_calculator_recursive_descent.v to 98 lines (#23847)
1 year ago
1.94 KB
minimal_c_like_program_using_puts.v
all: replace `int` with `i32` in `fn C.name(x int) int` declarations (#26522)
last Feb 7
643 bytes
net_resolve.v
examples: change var name '@type' to 'type' in net_resolve.v (#22526)
1 year ago
387 bytes
news_fetcher.v
examples: fix most notices for `./v -check-unused-fn-args -N build-examples` (remaining ones are triggered for vlib/x/json2/decode.v)
last Jan 25
1.48 KB
pidigits.v
examples: improve pidigits.v using a much faster spigot algorithm from https://mail.python.org/pipermail/edu-sig/2012-December/010721.html
last Feb 18
653 bytes
poll_coindesk_bitcoin_vs_usd_rate.v
examples: fix poll_coindesk_bitcoin_vs_usd_rate.v, use the new v2 API endpoint
1 year ago
1.07 KB
primes.v
examples: use a sieve of Eratosthenes in primes.v, to handle bigger inputs more efficiently
last Jul 31
369 bytes
rule110.v
v: refactor $var to ${var} across entire repository, make vfmt always output the newer form `${expr}` (#26494)
last Feb 1
1.68 KB
sha256sum_with_io_cp.v
examples,io: add sha256sum_with_io_cp.v, make the size of the buffer used by io.cp parametrisable (#23585)
1 year ago
865 bytes
spectral.v
fmt: remove unnecessary parentheses after `return` (fix #11423) (#11435)
4 years ago
1.19 KB
sync_pool.v
examples: add sync_pool.v for easier testing/diagnosing issues with the `sync.pool` implementation on different platforms
1 year ago
1.15 KB
tcp_notify_echo_server.v
checker: check if guard returning non-propagate option or result (fix #17742) (#17794)
3 years ago
1.65 KB
term_display_sixel.v
term: add functions for detecting Sixel support + example (#21665)
2 years ago
701 bytes
vascii.v
examples: add vascii.v showing a table of the first 128 ASCII characters with their names and codes in dec, oct, hex, bin formats (#23466)
1 year ago
8.39 KB