Skip to content

Instantly share code, notes, and snippets.

@eugrus
Created March 26, 2025 21:47
Show Gist options
  • Save eugrus/c491408d12994e8f5e07d468f1581763 to your computer and use it in GitHub Desktop.
Save eugrus/c491408d12994e8f5e07d468f1581763 to your computer and use it in GitHub Desktop.
#!/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