expression pour printf

This commit is contained in:
Vu Tuan Minh
2025-04-09 12:30:17 +02:00
parent b357a16114
commit 038159108b
3 changed files with 26 additions and 7 deletions

View File

@@ -80,6 +80,13 @@ public class Program{
}
}
public static record ReadImp(ArrayList<String> t) implements Instruction{
@Override
public <H, S> S accept(InstrVisitor<H, S> v, H h) {
return v.visitRead(this, h);
}
}
//Type
public static record Type_voidImp() implements Type{
@Override