Initial commit of main compiler sources (or should I say ... SAUCES!)

This commit is contained in:
2025-06-08 23:58:21 +10:00
parent 60c566025c
commit 06f2613083
214 changed files with 22210 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package slangc.api;
import slang.streams.SyncInput;
import slang.streams.SyncOutput;
public class CacheManager {
public SyncInput<byte> getInput(String cacheName) {
return null;
}
public SyncOutput<byte> getOutput(String cacheName) {
return null;
}
}