feature: ALU boilerplate

boilerplate classes for stressing the ALU
This commit is contained in:
Abdellah El Morabit 2025-11-15 23:16:41 +01:00
parent 60fdc2d043
commit 2adbea2fc2
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package com.nsrddyn
class ALU {
}

View File

@ -0,0 +1,13 @@
package com.nsrddyn
import scala.util.hashing
class Hash {
def hashString(): Unit = {
println("Hello from hash function")
}
}

View File

@ -0,0 +1,5 @@
package com.nsrddyn
class Prime {
}