updates
This commit is contained in:
parent
14b9e6c4f1
commit
fd76a1b080
5 changed files with 20 additions and 0 deletions
2
.vscode/settings.json
vendored
Normal file
2
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
4
LearnJulia/Project.toml
Normal file
4
LearnJulia/Project.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
name = "LearnJulia"
|
||||
uuid = "c79a5feb-1fd0-4be5-8745-d1d81214285b"
|
||||
authors = ["Kyle Belanger <kyleb44@hotmail.com>"]
|
||||
version = "0.1.0"
|
7
LearnJulia/src/Chapter4.jl
Normal file
7
LearnJulia/src/Chapter4.jl
Normal file
|
@ -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
|
5
LearnJulia/src/LearnJulia.jl
Normal file
5
LearnJulia/src/LearnJulia.jl
Normal file
|
@ -0,0 +1,5 @@
|
|||
module LearnJulia
|
||||
|
||||
greet() = print("Hello World!")
|
||||
|
||||
end # module LearnJulia
|
2
Project.toml
Normal file
2
Project.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[deps]
|
||||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
|
Loading…
Reference in a new issue