work in progress

This commit is contained in:
2025-12-18 09:23:54 +01:00
parent 7daa295db1
commit 2000b51159
2 changed files with 9 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
# tiny class to hold a 2x2 matrix 1# tiny class to hold a 2x2 matrix
class Matrix2x2: class Matrix2x2:
def __init__(self, m00, m01, m10, m11): def __init__(self, m00, m01, m10, m11):
self.m00 = m00 self.m00 = m00

8
math/sum/fib.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
int i, n;
int t1 = 0, t2 = 1;
int nextTerm = t1 + t2;
printf("")
}