mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 20:44:17 +01:00
16 lines
323 B
PowerShell
16 lines
323 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Plays the 2048 game
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser with the 2048 game.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./play-2048-game
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-default-browser.ps1" "https://2048game.com/"
|
|||
|
exit 0 # success
|