История изменений
Исправление lbvf50txt, (текущая версия) :
Zig, Nim, Hare и еще есть ODIN. Язык продолающий традиции императивно процедурного программирования основаный на идеях из 80х.
https://odin-lang.org/docs/faq/
The language borrows heavily from (in order of philosophy and impact): Pascal, C, Go, Oberon-2, Newsqueak, GLSL.
Niklaus Wirth and Rob Pike have been the programming language design idols throughout this project.
https://github.com/odin-lang/Odin/blob/master/examples/demo/demo.odin
// Range-based for loop
// The basic for loop
for j := 0; j < 10; j += 1 {
fmt.println(j)
}
// can also be written
for j in 0..<10 {
fmt.println(j)
}
for j in 0..=9 {
fmt.println(j)
}
Уже плото используется в генерации графики. Мне этот язык понравился больше других своей понятностью.
https://odin-lang.org/docs/faq/
… we do not consider it as good engineering practice to consume a resource lavishly just because it happens to be cheap
Niklaus Wirth, Project Oberon
Increasingly, people seem to interpret complexity as sophistication, which is baffling – the incomprehensible should cause suspicion, not admiration. Possibly this results from the mistaken belief that using a mysterious device confers [extra] power on the user.
Niklaus Wirth
Исправление lbvf50txt, :
Zig, Nim, Hare и еще есть ODIN. Язык продолающий традиции императивно процедурного программирования основаный на идеях из 80х.
https://odin-lang.org/docs/faq/
The language borrows heavily from (in order of philosophy and impact): Pascal, C, Go, Oberon-2, Newsqueak, GLSL.
Niklaus Wirth and Rob Pike have been the programming language design idols throughout this project.
https://github.com/odin-lang/Odin/blob/master/examples/demo/demo.odin
// Range-based for loop
// The basic for loop
for j := 0; j < 10; j += 1 {
fmt.println(j)
}
// can also be written
for j in 0..<10 {
fmt.println(j)
}
for j in 0..=9 {
fmt.println(j)
}
Уже плото используется в генерации графики. Мне этот язык понравился больше других своей понятностью.
Исходная версия lbvf50txt, :
Zig, Nim, Hare и еще есть ODIN. Язык продолающий традиции императивно процедурного программирования основаный на идеях из 80х.
https://odin-lang.org/docs/faq/
The language borrows heavily from (in order of philosophy and impact): Pascal, C, Go, Oberon-2, Newsqueak, GLSL.
Niklaus Wirth and Rob Pike have been the programming language design idols throughout this project.
// Range-based for loop
// The basic for loop
for j := 0; j < 10; j += 1 {
fmt.println(j)
}
// can also be written
for j in 0..<10 {
fmt.println(j)
}
for j in 0..=9 {
fmt.println(j)
}
Уже плото используется в генерации графики. Мне этот язык понравился больше других своей понятностью.