This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
) | |
type Item struct { | |
Name string | |
Price float64 | |
discount float64 |
This file contains hidden or 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
const readline = require("readline"); | |
const rl = readline.createInterface({ | |
input: process.stdin, | |
output: process.stdout, | |
}); | |
console.log("Game Started"); | |
const options = ["tas", "kagit", "makas"]; |
This file contains hidden or 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
if ( | |
document.getElementById("btnSignCommon-1") && | |
document.getElementById("btnSignCommon-2") | |
) { | |
document | |
.getElementById("btnSignCommon-1") | |
.addEventListener("click", function () { | |
window.location.href = "login.html"; | |
}); |
OlderNewer