PowerShell/Scripts/play-2048-game.ps1
2021-11-25 14:07:34 +01:00

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