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
/*BananaDesk Step 2*/ | |
/*Mario de la Torre*/ | |
var Person = function(firstName){ | |
this.firstName = firstName; | |
}; | |
Person.prototype.salarycalc = function (){ | |
/*test-code*/ | |
/*afirmations*/ |
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
/** | |
* Created by mario on 28/03/16. | |
*/ | |
var contador=0; | |
var N; | |
var tablero; | |
function problemaCaballoAjedrez(n,x,y) { |
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
namespace dentalink | |
{ | |
public class Persona | |
{ | |
private string _nombre; | |
public Persona() | |
{ | |
_nombre= "sin asignar"; | |
} |