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
"dependencies": { | |
"classnames": "^2.3.1", | |
"react": "^17.0.2", | |
"react-dom": "^17.0.2" | |
}, | |
"devDependencies": { | |
"@parcel/transformer-postcss": "^2.0.0-rc.0", | |
"@parcel/transformer-typescript-tsc": "^2.0.0-rc.0", | |
"@parcel/validator-typescript": "^2.0.0-rc.0", | |
"@types/react": "^17.0.11", |
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
var net = require('net'), | |
config = require('../../../config'); | |
var client = net.connect( | |
{ | |
host: config.host, | |
port: config.port | |
}, | |
function () { |
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
[Fact()] | |
public void getFizzBuzzTest() | |
{ | |
var mock = new Moq.Mock<Converter>(); | |
mock.Setup(c => c.convert(Moq.It.IsAny<int>())) | |
.Returns((int val) => { return "" + val; }); | |
Play play = new Play(4, mock.Object); |
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
.DATA | |
va dw 10 | |
vb dw 20 | |
str1 db "lielaks va",13,10,0 | |
str2 db "lielaks vb",13,10,0 |