Christopher C. Aycock
Christopher C. Aycock
From the roadmap (#1), we want default and named arguments: ``` func foo(x: Int64, y: Int64 = 3): return x + y end foo(7) foo(7, 11) foo(7, y=11) foo(x=7, y=11)...
Found by @bobjansen: ``` func foo(x: Int64): x = x - 1 return end let a = 7 print(a) foo(a) print(a) ``` This prints: ``` 7 6 ``` The parameter...
We have `merge()` and `merge_asof()`. There may even come a time when we perform functions on overlapping columns. As someone who wants to join two tables together, I just want...