Use .b file extension
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar> Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
This commit is contained in:
parent
72b7fcf0ff
commit
ac68ed4224
|
@ -1,5 +1,5 @@
|
|||
fun h = 3*x;
|
||||
function g = { x - 2: x < 3,
|
||||
function g = { x - 2: x < 3,
|
||||
x^3: x >= 5,
|
||||
x: x > 7
|
||||
};
|
|
@ -0,0 +1,3 @@
|
|||
if ("Hola" + g == 2) {
|
||||
print("Funciona");
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
if ("Hola" + g == 2) {
|
||||
print("Funciona");
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
if (1 == 1) {
|
||||
print("Hola");
|
||||
}
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
if (1 == 1) {
|
||||
print("Hola");
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
function g = { x - 2: x < 3,
|
||||
function g = { x - 2: x < 3,
|
||||
x^3: x >= 5,
|
||||
x: x > 7
|
||||
};
|
|
@ -1,2 +1,3 @@
|
|||
fun f = f(3) * x * 4 + 3;
|
||||
fun g = f(3) + f'(3)*(x-3) + f''(3)/2 * (x-3)^2 + f'''(3) / 6 * (x-3)^3 + f''''(3) / 24 * (x-3)^4;
|
||||
fun g = f(3) + f'(3)*(x-3) + f''(3)/2 * (x-3)^2 + f'''(3) / 6 * (x-3)^3 + f''''(3) / 24 * (x-3)^4;
|
||||
fun g = f(2) + integrate(derivative())
|
Loading…
Reference in New Issue