mirror of
https://github.com/egormanga/Slang.git
synced 2025-03-01 18:09:30 +03:00
17 lines
162 B
Plaintext
17 lines
162 B
Plaintext
|
import sld:std:*;
|
||
|
|
||
|
class fd {
|
||
|
str read();
|
||
|
str read(int n);
|
||
|
|
||
|
int write(str data);
|
||
|
}
|
||
|
|
||
|
class stdio {
|
||
|
str readln();
|
||
|
|
||
|
void print(*args);
|
||
|
|
||
|
void println(*args);
|
||
|
}
|