We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
30 Nov 2019
The last release before 0.2.
-freestanding
string.index()
?int
int/-1
v up
.green
Color.green
[]interface
os.cp()
$if clang, msvc, mingw, x32, x64, big_endian, little_endian {
--enable-globals
if bool(1) {
<<
>>
%, |, &
println(true)
true
1
os.exec()
CreateProcess
****int
$if os {
c'hello'
foo()?
doc/docs.md
eventbus
malloc/free
utf8
to_lower()
to_upper()
for c in str {
string/array.left/right/slice/substr
[a..b]
The text was updated successfully, but these errors were encountered:
I think the release on the github releases page is missing at the moment. Version 0.1.22 is the latest and it is missing the release notes...
Sorry, something went wrong.
PS D:\soft\v\examples> v print_backtrace_skipping_top_frames is not implemented on this platform for now...
windows 10 pro
No branches or pull requests
V 0.1.23
30 Nov 2019
The last release before 0.2.
-freestanding
flag, allowing to build programs without linking to libc.string.index()
now returns?int
instead ofint/-1
.v up
have been split up into separate applications to keep the core V compiler small..green
instead ofColor.green
) when it's enough.[]interface
support.os.cp()
for copying files and directores.$if clang, msvc, mingw, x32, x64, big_endian, little_endian {
.--enable-globals
flag) for low level applications like kernels and drivers.if bool(1) {
worked.<<
and>>
now work with all integer types.%, |, &
etc).println(true)
now printstrue
instead of1
.os.exec()
now usesCreateProcess
on Windows.****int
).$if os {
blocks are now skipped on a different OS.c'hello'
).foo()?
syntax for error propagation.doc/docs.md
.eventbus
module.malloc/free
on bare metal.utf8
helper functions (to_lower()
,to_upper()
, etc).for c in str {
.string/array.left/right/slice/substr
were removed ([a..b]
slicing syntax should be used instead).The text was updated successfully, but these errors were encountered: