charshift funktion

This commit is contained in:
2025-10-04 13:50:24 +02:00
parent 3ac7122589
commit 270e7cc872
2 changed files with 8 additions and 0 deletions

View File

@@ -13,4 +13,8 @@ namespace ax{
int sqrt(int x){
return x*x;
}
char shift(char x){
return x-1;
}
}