PowerShell/Scripts/play-tic-tac-toe-game.ps1
2021-11-25 14:17:37 +01:00

16 lines
358 B
PowerShell

<#
.SYNOPSIS
Plays the TicTacToe game
.DESCRIPTION
This script launches the Web browser with the TicTacToe game.
.EXAMPLE
PS> ./play-tic-tac-toe-game
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://tmaiadev-tictactoe.netlify.app/"
exit 0 # success