mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-06 06:58:45 +00:00
debug
This commit is contained in:
parent
582ad5668e
commit
0d62ae0814
29 changed files with 99479 additions and 1166 deletions
38
tests/partitions.lang
Normal file
38
tests/partitions.lang
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
// partition DOC { // or .doc.lang filename
|
||||
// // ...
|
||||
// }
|
||||
|
||||
// ?? separated doc ??
|
||||
|
||||
partition TEST { // or .test.lang filename
|
||||
decl something : Unit
|
||||
}
|
||||
|
||||
partition INTERFACE { // or .interface.lang filename
|
||||
decl something : Unit
|
||||
}
|
||||
|
||||
partition CORE { // or .core.lang filename
|
||||
decl something : Unit
|
||||
}
|
||||
|
||||
partition LIB { // or .lib.lang filename
|
||||
decl something : Unit
|
||||
}
|
||||
|
||||
partition MODULE { // or .module.lang filename
|
||||
decl something : Unit
|
||||
}
|
||||
|
||||
// maybe another name for partition
|
||||
|
||||
partition EXE { // or .exe.lang filename
|
||||
decl something : Unit
|
||||
}
|
||||
|
||||
// partition CONFIG { // or .config.lang filename
|
||||
// decl something : Unit
|
||||
// }
|
||||
|
||||
// ?? config is one of the partitions ??
|
||||
// ?? maybe more ??
|
||||
Loading…
Add table
Add a link
Reference in a new issue