LL
Size: a a a
LL
V
LL
LL
AR
AR
for x <- m,
foo = x[:foo] do
foo
end
AR
PG
for x <- m, do: x[:foo]
V
AR
AR
AR
V
dirs = ['/home/mikey', '/home/james']
for dir <- dirs,
file <- File.ls!(dir),
path = Path.join(dir, file),
File.regular?(path) do
File.stat!(path).size
end
AR
for x <- m,
(foo = x[:foo]) || true do
foo
end
AR
PG
if x = foo(...) do
...
end
V
dirs = ['/home/mikey', '/home/james']
for dir <- dirs,
file <- File.ls!(dir),
path = Path.join(dir, file),
File.regular?(path) do
File.stat!(path).size
end
AB
AR
if x = foo(...) do
...
end
AR