Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lua day02 #319

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lua/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
- [hello-world](./hello-world/README.md)
- [reverse-string](./reverse-string/README.md)
- [raindrops](./raindrops/README.md)
- [leap](./leap/README.md)
5 changes: 5 additions & 0 deletions lua/leap/.busted
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
return {
default = {
ROOT = { '.' }
}
}
24 changes: 24 additions & 0 deletions lua/leap/.exercism/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"authors": [
"aarti"
],
"contributors": [
"etandel",
"kytrinyx",
"ryanplusplus"
],
"files": {
"solution": [
"leap.lua"
],
"test": [
"leap_spec.lua"
],
"example": [
".meta/example.lua"
]
},
"blurb": "Given a year, report if it is a leap year.",
"source": "CodeRanch Cattle Drive, Assignment 3",
"source_url": "https://coderanch.com/t/718816/Leap"
}
1 change: 1 addition & 0 deletions lua/leap/.exercism/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"track":"lua","exercise":"leap","id":"77f06ba74c2b49e5b6c9cf8aa3a0dfee","url":"https://exercism.org/tracks/lua/exercises/leap","handle":"vpayno","is_requester":true,"auto_approve":false}
54 changes: 54 additions & 0 deletions lua/leap/HELP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Help

## Running the tests

To run the tests, run the command `busted` from within the exercise directory.

Refer to the [Installing Lua locally][install] documentation to get Lua and busted installed correctly.

[install]: https://exercism.org/docs/tracks/lua/installation

## Submitting your solution

You can submit your solution using the `exercism submit leap.lua` command.
This command will upload your solution to the Exercism website and print the solution page's URL.

It's possible to submit an incomplete solution which allows you to:

- See how others have completed the exercise
- Request help from a mentor

## Need to get help?

If you'd like help solving the exercise, check the following pages:

- The [Lua track's documentation](https://exercism.org/docs/tracks/lua)
- The [Lua track's programming category on the forum](https://forum.exercism.org/c/programming/lua)
- [Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5)
- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)

Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.

There are many great free online resources for Lua including:

1. [lua.org][8]
2. A highly recommended detailed and authoritative introduction to all aspects of Lua programming by Lua's chief architect: [Programming in Lua, by Roberto Ierusalimschy][6]. Note that the first edition (covering Lua 5.0) is [freely available online][9].
3. For an official definition of the Lua language, consult the [Lua 5.4 Reference Manual][7], by R. Ierusalimschy, L. H. de Figueiredo, W. Celes.
4. [Lua Style Guide][4]
5. [Learn Lua in 15 minutes][5]
6. Some options for linting
- [Lua Lint][10]
- [Lua Inspect][11]
- [luacheck][12]
- [Detecting Undefined Variables][13]

[4]: https://github.com/Olivine-Labs/lua-style-guide
[5]: http://tylerneylon.com/a/learn-lua/
[6]: http://www.lua.org/pil/
[7]: http://www.lua.org/manual/5.4/
[8]: http://www.lua.org
[9]: http://www.lua.org/pil/contents.html
[10]: http://lua-users.org/wiki/LuaLint
[11]: http://lua-users.org/wiki/LuaInspect
[12]: https://github.com/luarocks/luacheck
[13]: http://lua-users.org/wiki/DetectingUndefinedVariables
48 changes: 48 additions & 0 deletions lua/leap/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Leap

Welcome to Leap on Exercism's Lua Track.
If you need help running the tests or submitting your code, check out `HELP.md`.

## Instructions

Given a year, report if it is a leap year.

The tricky thing here is that a leap year in the Gregorian calendar occurs:

```text
on every year that is evenly divisible by 4
except every year that is evenly divisible by 100
unless the year is also evenly divisible by 400
```

For example, 1997 is not a leap year, but 1996 is.
1900 is not a leap year, but 2000 is.

## Notes

Though our exercise adopts some very simple rules, there is more to learn!

For a delightful, four minute explanation of the whole leap year phenomenon, go watch [this youtube video][video].

[video]: https://www.youtube.com/watch?v=xX96xng7sAE

## Source

### Created by

- @aarti

### Contributed to by

- @etandel
- @kytrinyx
- @ryanplusplus

### Based on

CodeRanch Cattle Drive, Assignment 3 - https://coderanch.com/t/718816/Leap

### My Solution

- [my solution](./leap.lua)
- [run-tests](./run-tests-lua.txt)
17 changes: 17 additions & 0 deletions lua/leap/leap.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
local leap_year = function(year)
if year % 400 == 0 then
return true
end

if year % 100 == 0 then
return false
end

if year % 4 == 0 then
return true
end

return false
end

return leap_year
19 changes: 19 additions & 0 deletions lua/leap/leap_spec.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
local is_leap_year = require("leap")

describe("leap", function()
it("a known leap year", function()
assert.is_true(is_leap_year(1996))
end)

it("any old year", function()
assert.is_false(is_leap_year(1997))
end)

it("turn of the 20th century", function()
assert.is_false(is_leap_year(1900))
end)

it("turn of the 21st century", function()
assert.is_true(is_leap_year(2000))
end)
end)
55 changes: 55 additions & 0 deletions lua/leap/luacov.report.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
==============================================================================
leap_spec.lua
==============================================================================
* local is_leap_year = require('leap')

* describe('leap', function()
* it('a known leap year', function()
* assert.is_true(is_leap_year(1996))
end)

* it('any old year', function()
* assert.is_false(is_leap_year(1997))
end)

* it('turn of the 20th century', function()
* assert.is_false(is_leap_year(1900))
end)

* it('turn of the 21st century', function()
* assert.is_true(is_leap_year(2000))
end)
end)

==============================================================================
leap.lua
==============================================================================
local leap_year = function(year)

* if year % 400 == 0 then
* return true
end

* if year % 100 == 0 then
* return false
end

* if year % 4 == 0 then
* return true
end

* return false
end

* return leap_year

==============================================================================
Summary
==============================================================================

File Hits Missed Coverage
----------------------------------
leap.lua 8 0 100.00%
leap_spec.lua 10 0 100.00%
----------------------------------
Total 18 0 100.00%
3 changes: 3 additions & 0 deletions lua/leap/luacov.report.out.index
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
leap_spec.lua:0 620
leap.lua:620 1057
Summary:1057 1431
60 changes: 60 additions & 0 deletions lua/leap/luacov.stats.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
163:/usr/share/lua/5.1/busted/block.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 68 0 68 69 0 1 4 4 72 68 64 0 0 5 0 0 0 0 0 0 1 0 1 12 0 12 8 8 0 0 0 0 12 3 0 12 12 9 0 0 3 3 0 0 0 0 0 0 3 0 3 1 0 1 15 0 15 8 8 0 0 0 0 15 0 15 15 0 0 0 0 0 15 1 0 1 18 18 0 18 18 0 0 0 0 0 0 18 8 0 0 0 18 1 0 1 4 1 0 1 3 3 3 0 4 0 1 3 1 0 1 3 1 0 1 2 0 2 2 2 0 0 0 0 2 0 2 2 0 2 0 0 0 0 2 2 0 0 2 2 0 3 0 1
124:/usr/share/lua/5.1/busted/context.lua
0 0 0 1 42 41 0 1 1 1 1 1 0 0 0 1 42 41 0 89 88 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 1 5 0 5 0 0 6 6 0 0 6 6 0 0 6 1 0 6 0 0 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 6 6 6 0 0 4 0 0 0 304 0 0 0 26 26 26 26 26 0 0 26 26 26 26 26
315:/usr/share/lua/5.1/busted/core.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 5 0 5 5 5 5 0 0 0 0 5 5 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 35 0 0 0 0 0 0 0 5 0 5 5 1 1 1 1 1 1 0 0 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 26 26 26 0 52 0 0 0 52 0 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26 0 26 26 0 0 0 14 14 14 7 7 7 7 7 7 0 28 14 28 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 6 0 6 6 5 0 0 0 6 12 0 6 6 0 0 0 0 0 0 6 6 6 6 6 6 6 6 6 6 6 6 0 0 6 0 6 3 0 3 0 6 0 0 0 3 9 6 6 12 6 0 3
31:/usr/share/lua/5.1/busted/environment.lua
0 0 0 0 0 0 0 289 0 288 215 288 0 0 0 0 0 0 0 0 74 0 0 0 0 0 0 0 0 0 1
72:/usr/share/lua/5.1/busted/execute.lua
1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 1 0 0 0 0 0 1 0 1 0 0 0 0 1 1 1 1 0 1 1 0 1 0 1 0 0 0 2 0 1 1
127:/usr/share/lua/5.1/busted/init.lua
0 0 0 0 1 1 1 0 1 1 0 0 1 1 1 0 1 1 0 0 4 4 0 4 0 0 0 0 4 0 4 4 4 0 4 0 4 4 4 4 4 0 0 0 0 0 0 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45
50:/usr/share/lua/5.1/busted/languages/en.lua
1 0 1 0 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1
23:/usr/share/lua/5.1/busted/modules/files/lua.lua
1 0 1 0 0 5 5 5 1 0 0 1 1 0 0 1 1 0 0 1 1 0 1
107:/usr/share/lua/5.1/busted/modules/files/moonscript.lua
1 0 2 1 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 1
129:/usr/share/lua/5.1/busted/modules/filter_loader.lua
0 0 0 4 4 0 8 8 4 4 0 0 4 1 0 0 0 0 1 0 0 5 0 0 0 0 5 1 0 0 4 4 0 0 0 0 4 1 0 0 5 0 0 0 0 5 1 0 0 4 0 0 0 0 4 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 8 14 10 0 0 9 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 1 1 1 1 1
34:/usr/share/lua/5.1/busted/modules/output_handler_loader.lua
0 0 0 0 0 0 0 0 1 2 1 0 1 0 0 1 0 2 0 1 0 0 0 1 0 0 0 0 1 0 0 0 1 1
101:/usr/share/lua/5.1/busted/modules/test_file_loader.lua
1 0 0 1 1 1 1 0 3 2 2 0 0 0 0 0 1 0 1 1 1 0 2 8 8 0 0 0 0 15 8 1 0 0 7 2 0 2 1 0 0 1 0 2 0 0 0 0 0 1 1 1 0 0 1 2 1 0 1 1 0 0 0 1 1 1 0 0 1 0 0 1 0 2 1 0 1 2 1 1 1 1 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 1
179:/usr/share/lua/5.1/busted/outputHandlers/base.lua
0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 16 1 0 0 1 1 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 2 0 0 12 12 0 24 24 0 12 12 0 0 12 1 0 0 0 4 48 44 36 0 0 4 4 0 4 4 4 4 4 4 4 0 4 0 4 1 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 0 0 4 4 1 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 4 0 0 0 4 0 0 4 0 4 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1
286:/usr/share/lua/5.1/busted/outputHandlers/gtest.lua
1 1 1 1 0 1 0 1 1 0 1 87 0 0 0 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 8 8 8 8 0 8 1 0 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 0 3 3 3 0 0 0 0 3 1 0 0 1 1 0 1 1 1 0 1 1 1 1 0 1 1 0 0 8 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 1 1 0 1 1 0 0 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 0 0 4 4 0 4 1 0 0 4 4 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 4 4 0 4 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1
208:/usr/share/lua/5.1/busted/runner.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 1 1 1 0 2 0 0 1 0 2 0 0 1 0 2 0 0 0 1 0 2 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 2 1 1 1 1 1 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 0 0 1 0 1 1 1 2 1 1 1 1 0 0 0 0 0 0 1 1 2 1 1 1 0 0 1 0 1 0 0 1
42:/usr/share/lua/5.1/busted/status.lua
0 34 34 34 34 34 34 34 34 0 34 0 0 0 30 30 46 30 30 30 0 0 0 30 0 0 0 30 0 0 0 4 4 4 0 34 0 0 60 30 38 30
35:/usr/share/lua/5.1/busted/utils.lua
0 0 0 1 1 3 2 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 5 4 0 1
177:/usr/share/lua/5.1/luassert/assert.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 0 12 8 0 0 4 12 8 4 0 0 0 4 4 4 0 4 0 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 8 0 0 4 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
267:/usr/share/lua/5.1/luassert/assertions.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 2 2 2
5:/usr/share/lua/5.1/luassert/modifiers.lua
0 0 0 0 4
283:/usr/share/lua/5.1/luassert/util.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 0 0 0 0 4 4 0 4 0 0 0 0 0 4 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 8 4 4 4 0 4 4 0 0 0 0 0 0 0 0 4 0 0 4 4 4 12 8 8 0 0 8 8 0 0 0 0 0 0 8 8 8 0 8 0 0 0 4 0 0 0 4
154:/usr/share/lua/5.1/mediator.lua
0 35 0 0 0 35 35 35 35 0 0 0 0 0 35 0 35 35 0 0 0 0 0 21 21 21 21 21 21 0 0 35 35 0 35 0 35 20 20 0 19 0 0 35 0 35 21 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 0 0 0 0 0 21 0 0 21 21 21 0 0 0 21 0 0 104 21 0 0 0 0 0 0 0 0 0 0 0 21 0 0 90 46 0 0 46 0 46 0 46 46 0 0 0 44 29 0 15 0 21 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56 0 160 104 0 0 56 0 0 0 35 0 0 0 0 0 0 0 0 0 0 0 21
476:/usr/share/lua/5.1/pl/dir.lua
0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 1 2 0 0 0 1 0 0 8 8 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 0 1 1 0 0 0 0 15 13 9 9 9 9 9 1 0 0 0 0 3 0 2 1 0 0 0 0 0 0 0 0 1 1 1 0 1 1 10 9 8 8 8 0 0 0 0 1 1 0 1
276:/usr/share/lua/5.1/pl/path.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 11 0 0 11 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 208 190 190 0 18 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 4 3 0 0 3 3 0 1 0 0 1 0 0 0 0 0 0 10 10 10 0 0 0 0 0 8 8 8 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 0 8
793:/usr/share/lua/5.1/pl/tablex.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 90 88 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 11 9 9 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 1 0 0 1 2 1 0 0 1
81:/usr/share/lua/5.1/pl/types.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2
401:/usr/share/lua/5.1/pl/utils.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79 0 0 79 0 0 79 0 0 0 0 0 0 75 75
29:/usr/share/lua/5.1/say/init.lua
0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 19 19
18:leap.lua
0 0 4 1 0 0 3 1 0 0 2 1 0 0 1 1 0 1
19:leap_spec.lua
1 0 2 2 1 2 0 2 1 2 0 2 1 2 0 2 1 2 3
Loading
Loading