mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-15 19:28:47 +00:00
Initialization of separate units; fixed runtime
This commit is contained in:
parent
811c24d5a6
commit
c09a3b36b6
13 changed files with 116 additions and 46 deletions
|
|
@ -1,3 +1,5 @@
|
|||
public fun from_test005 (s) {
|
||||
printf ("called with %s\n", s)
|
||||
}
|
||||
|
||||
printf ("Init Lib01...\n")
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TESTS=$(sort $(basename $(wildcard test*.expr)))
|
||||
LIBS=$(sort $(basename $(wildcard Lib*.expr)).o)
|
||||
LIBS=$(patsubst %.expr,%.o, $(sort $(wildcard Lib*.expr)))
|
||||
|
||||
RC=../../src/rc.opt
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
Init Lib01...
|
||||
called with that one
|
||||
|
|
|
|||
4
regression/x86only/orig/test008.log
Normal file
4
regression/x86only/orig/test008.log
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Init Lib01...
|
||||
Init Lib02...
|
||||
Init Lib03...
|
||||
main dish.
|
||||
4
regression/x86only/test008.expr
Normal file
4
regression/x86only/test008.expr
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import Lib03;
|
||||
import Lib02;
|
||||
|
||||
printf ("main dish.\n")
|
||||
1
regression/x86only/test008.input
Normal file
1
regression/x86only/test008.input
Normal file
|
|
@ -0,0 +1 @@
|
|||
0
|
||||
Loading…
Add table
Add a link
Reference in a new issue