mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-24 15:58:44 +00:00
23 lines
477 B
Text
23 lines
477 B
Text
partition TEST { // or .test.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition INTERFACE { // or .interface.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition CORE { // or .core.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition LIB { // or .lib.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition MODULE { // or .module.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|
|
|
|
partition EXE { // or .exe.lang filename
|
|
decl something : Unit -> Unit
|
|
}
|