Skip to content

Commit

Permalink
Merge pull request #1 from BestLanguage/must-rust
Browse files Browse the repository at this point in the history
πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€
  • Loading branch information
srayuws authored Nov 17, 2021
2 parents 3d95772 + a887ce2 commit 0b3092f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@
<head>
<meta charset="UTF-8">
<script type="text/javascript">
if (Math.random() < 0.9)
let random_value = Math.random();
if (random_value < 0.1)
{
window.location = "https://php.net/";
window.location = "https://www.python.org/";
}
else if(random_value < 0.5)
{
window.location = "https://www.rust-lang.org";
}
else
{
window.location = "https://www.python.org/";
window.location = "https://www.php.net";
}
</script>
<title>Page Redirection</title>
Expand Down

0 comments on commit 0b3092f

Please sign in to comment.