mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 19:40:48 -05:00
Merge branch 'main' of github.com:ratfactor/ziglings into main
This commit is contained in:
commit
96cb465fb8
2 changed files with 7 additions and 5 deletions
|
@ -1,13 +1,15 @@
|
||||||
# ziglings
|
# ziglings
|
||||||
|
|
||||||
Welcome to `ziglings`! This project contains a series of incomplete exercises.
|
Welcome to `ziglings`! This project contains a series of tiny broken programs.
|
||||||
By completing the exercises, you learn how to read and write
|
By fixing them, you'll learn how to read and write
|
||||||
[Zig](https://ziglang.org/)
|
[Zig](https://ziglang.org/)
|
||||||
code.
|
code!
|
||||||
|
|
||||||
This project was directly inspired by the brilliant and fun
|
This project was directly inspired by the brilliant and fun
|
||||||
[rustlings](https://github.com/rust-lang/rustlings)
|
[rustlings](https://github.com/rust-lang/rustlings)
|
||||||
project for the [Rust](https://www.rust-lang.org/) language.
|
project for the [Rust](https://www.rust-lang.org/) language.
|
||||||
|
Indirect inspiration comes from [Ruby Koans]( http://rubykoans.com/)
|
||||||
|
and the Little LISPer/Little Schemer series of books.
|
||||||
|
|
||||||
## Intended Audience
|
## Intended Audience
|
||||||
|
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
//
|
//
|
||||||
// Get values of an array using array[index] notation:
|
// Get values of an array using array[index] notation:
|
||||||
//
|
//
|
||||||
// const bar = foo[3]; // 5423
|
// const bar = foo[2]; // 5423
|
||||||
//
|
//
|
||||||
// Set values of an array using array[index] notation:
|
// Set values of an array using array[index] notation:
|
||||||
//
|
//
|
||||||
// foo[3] = 16;
|
// foo[2] = 16;
|
||||||
//
|
//
|
||||||
// Get the length of an array using the len property:
|
// Get the length of an array using the len property:
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue