Skip to content

Instantly share code, notes, and snippets.

View YongHee-Kim's full-sized avatar
🏠
Working from home

Yonghee Kim YongHee-Kim

🏠
Working from home
View GitHub Profile
@YongHee-Kim
YongHee-Kim / show.jl
Created July 5, 2018 00:35
show functions for XLSX
function Base.show(io::IO, xf::XLSX.XLSXFile)
p = basename(xf.filepath)
print(io, "XLSXFile(\"$p\") with ", length(xf.workbook.sheets), " Worksheets")
end