index
:
advent-of-code
master
Solutions to Advent of Code
Thomas Voss
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
2018
/
01
/
puzzle-1.awk
blob: 128d7e2dc5ba2f4fb5f8ab29eb73813ee34a28b8 (
plain
) (
blame
)
1
2
3
4
#!/usr/bin/awk -f
{
x
+=
$
1
}
END
{
print
x
}