Created
March 26, 2025 21:47
-
-
Save eugrus/c491408d12994e8f5e07d468f1581763 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/pwsh | |
param ([double]$netto) | |
$brutto = $netto*1.19 | |
Write-Output ("{0:F2}" -f $brutto) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment