Skip to content

Instantly share code, notes, and snippets.

View ethanjurman's full-sized avatar
🔬
Safety first is my suggestion when entering the 4th dimension!!

Ethan H. Jurman ethanjurman

🔬
Safety first is my suggestion when entering the 4th dimension!!
View GitHub Profile
def read_logs()
while(line == @fileREAD.gets)
log = line.split(",")
add( LogItem.new(log[0],food_db.getBasicFood(log[1]) || food_db.getBasicRecipe(log[1])) )
end
end