Hello I anm new here. I work through the real great book “Julia Quick syntax reference” from Antonello Lobianco. I typed a code from page 183. What is wrong with
Hi Tony, welcome to the Julia community!
When was the book written?
CSV uses the Tables.jl convention now, which means that it only provides a “backend” for understanding CSVs and the “frontend” needs to be another Tables sink which determines what you get out on the Julia side. It’s really easy, DataFrames is a good default. But this mechanism allows you to read a CSV directly into a database for example, without ever creating an intermediate table.
Furthermore, you should always enclose your code in ` backticks.
So `print(“Hello world!”)` becomes print("Hello world!")