mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
6 lines
127 B
Plaintext
6 lines
127 B
Plaintext
fn omitFirstInteger(arg1: int, ...rest) {
|
|
//rest comes in as an array of any
|
|
return rest;
|
|
}
|
|
|
|
print omitFirstInteger(1, 2, 3); |