This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function(exports) { | |
// export the class if we are in a Node-like system. | |
if (typeof module === 'object' && module.exports === exports) | |
exports = module.exports = SemVer; | |
// The debug function is excluded entirely from the minified version. | |
// Note: this is the semver.org version of the spec that it implements | |
// Not necessarily the package version of this code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.SemVer = (function () { | |
'use strict'; | |
function createCommonjsModule(fn) { | |
var module = { exports: {} }; | |
return fn(module, module.exports), module.exports; | |
} | |
// Note: this is the semver.org version of the spec that it implements | |
// Not necessarily the package version of this code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function love.conf(t) | |
t.window.title = "life" | |
t.window.width = 350 | |
t.window.height = 600 | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
List all solutions that eight queens on the chess board can't attach each other | |
example output: | |
x - - - - - - - | |
- - - - x - - - | |
- - - - - - - x | |
- - - - - x - - | |
- - x - - - - - | |
- - - - - - x - |
OlderNewer