diff options
| -rw-r--r-- | main.sy | 13 | ||||
| -rw-r--r-- | other.sy | 11 | ||||
| -rw-r--r-- | third.sy | 5 |
3 files changed, 0 insertions, 29 deletions
diff --git a/main.sy b/main.sy deleted file mode 100644 index 2e21a69..0000000 --- a/main.sy +++ /dev/null @@ -1,13 +0,0 @@ -use other -use third - -start :: fn { - other.f() - print other.g() - 42 <=> other.g() - other.g() <=> 42 - - other.third.print_the_third() - third.print_the_third() - third.main.other.third.main.third.print_the_third() -} diff --git a/other.sy b/other.sy deleted file mode 100644 index cee7fde..0000000 --- a/other.sy +++ /dev/null @@ -1,11 +0,0 @@ -use third - -f :: fn { - print "f" -} - - -g :: fn -> int { - answer :: 42 - ret answer -} diff --git a/third.sy b/third.sy deleted file mode 100644 index 777dd6d..0000000 --- a/third.sy +++ /dev/null @@ -1,5 +0,0 @@ -use main - -print_the_third :: fn { - print "three" -} |
