lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> But where is license, readme, usage example, self-tests via standalone
> test system, inlined docs in source, external docs, training course
> videos and product site? You can't just release source these days!

This may sound as joke, but see this on a GNU/Linux system:

~$ /bin/true --help
Usage: /bin/true [ignored command line arguments]
  or:  /bin/true OPTION
Exit with a status code indicating success.

      --help     display this help and exit
      --version  output version information and exit

NOTE: your shell may have its own version of true, which usually supersedes
the version described here.  Please refer to your shell's documentation
for details about the options it supports.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Full documentation at: <http://www.gnu.org/software/coreutils/true>
or available locally via: info '(coreutils) true invocation'
~$ /bin/true --version
true (GNU coreutils) 8.23
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Jim Meyering.
~$ 


On Tue, Feb 21, 2017 at 2:31 AM, Martin <eden_martin_fuhrspam@gmx.de> wrote:


On 02/20/2017 06:05 AM, Soni L. wrote:
> True is a simple module that evaluates to true. It is also the smallest
> Lua module ever.
>
> Repo: https://bitbucket.org/TeamSoni/true
>
> Features:
> - Smallest Lua module possible.
> - It's true!
>
> Usage:
>
> assert(require "true" == true)
>
Nice. You won smallest lua module contest!

But where is license, readme, usage example, self-tests via standalone
test system, inlined docs in source, external docs, training course
videos and product site? You can't just release source these days!

-- Martin