Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ uuid = "51acbf40-a10c-4c10-b3e2-612e88a6e4c7"
authors = ["Krishna Bhogaonker"]
version = "1.0.0-DEV"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"

[compat]
julia = "1.10"

Expand Down
7 changes: 6 additions & 1 deletion src/My_First_Package.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ function my_second_function()
return 1 + 7
end

function yet_another_function(a, b)
print("today is a good day...")
print("for some people.")
end



export my_first_function, my_second_function
export my_first_function, my_second_function, yet_another_function

end