This commit is contained in:
Kyle Belanger 2024-07-29 16:57:21 -04:00
parent 14b9e6c4f1
commit fd76a1b080
5 changed files with 20 additions and 0 deletions

2
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,2 @@
{
}

4
LearnJulia/Project.toml Normal file
View file

@ -0,0 +1,4 @@
name = "LearnJulia"
uuid = "c79a5feb-1fd0-4be5-8745-d1d81214285b"
authors = ["Kyle Belanger <kyleb44@hotmail.com>"]
version = "0.1.0"

View 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

View file

@ -0,0 +1,5 @@
module LearnJulia
greet() = print("Hello World!")
end # module LearnJulia

2
Project.toml Normal file
View file

@ -0,0 +1,2 @@
[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"