Initial set of scripts

This commit is contained in:
2015-08-08 21:04:55 -07:00
parent 362f74cd7e
commit 4f119844fd
21 changed files with 577 additions and 0 deletions

31
Julia Scripts/putitoff.jl Executable file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/julia
function input(prompt::String="")
print(prompt)
chomp(readline())
end
function main()
list = {}
while true
date = input("Type date: ");
addItem = input("Add an item: ")
together = "$addItem-$date"
push!(list,together)
println(list)
end
end
main()