MyGit

dev-2023-03

odin-lang/Odin

版本发布时间: 2023-03-03 19:56:20

odin-lang/Odin最新发布版本:dev-2024-09(2024-09-02 23:33:25)

New Language Features

Foo :: struct {x: f32, y: i32}
f := Foo{1, 2}
a, b := expand_values(f)
assert(a == 1 && b == 2)
Foo :: struct {
	using x: struct { // named `using` fields
		y: int,
	},
	z: f32
	using _: struct { // anonymous `using` fields
		w: bool,
	},
}

f := Foo{
	y = 123, // equivalent to `x = {y = 123},`
	z = 456,
	w = true,
}

Compiler Improvements

New Packages

Package Improvements

相关地址:原始地址 下载(tar) 下载(zip)

1、 odin-macos-amd64-dev-2023-03.zip 27.38MB

2、 odin-ubuntu-amd64-dev-2023-03.zip 51.42MB

3、 odin-windows-amd64-dev-2023-03.zip 47.14MB

查看:2023-03-03发行的版本