diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..7a73a41 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/LearnJulia/Project.toml b/LearnJulia/Project.toml new file mode 100644 index 0000000..7f7496f --- /dev/null +++ b/LearnJulia/Project.toml @@ -0,0 +1,4 @@ +name = "LearnJulia" +uuid = "c79a5feb-1fd0-4be5-8745-d1d81214285b" +authors = ["Kyle Belanger "] +version = "0.1.0" diff --git a/LearnJulia/src/Chapter4.jl b/LearnJulia/src/Chapter4.jl new file mode 100644 index 0000000..6a467c9 --- /dev/null +++ b/LearnJulia/src/Chapter4.jl @@ -0,0 +1,7 @@ +using DataFrames + +function grades_2020() + name = ["Sally", "Bob", "Alice", "Hank"] + grade_2020 = [1, 5, 8.5, 4] + DataFrame(; name, grade_2020) +end \ No newline at end of file diff --git a/LearnJulia/src/LearnJulia.jl b/LearnJulia/src/LearnJulia.jl new file mode 100644 index 0000000..d93cef6 --- /dev/null +++ b/LearnJulia/src/LearnJulia.jl @@ -0,0 +1,5 @@ +module LearnJulia + +greet() = print("Hello World!") + +end # module LearnJulia diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..5c876e1 --- /dev/null +++ b/Project.toml @@ -0,0 +1,2 @@ +[deps] +DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"