Skip to content
Permalink
89136f36f6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 9 lines (6 sloc) 232 Bytes
#!/usr/local/bin/julia
const files = length(ARGS) == 0 ? (println("please provide at least one file name!"); exit()) : ARGS
include("modules/wff.jl")
using WFF
file_o = [wordlist(file) for file in files]
map(x->x.print(),file_o)