mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-06 06:58:45 +00:00
11 lines
243 B
Text
11 lines
243 B
Text
partition TEST { // or .test.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition INTERFACE { // or .interface.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition CODE { // or .core.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|