summaryrefslogtreecommitdiff
path: root/test/test_import.test
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-09-23 11:13:23 +0200
committerDaniel Weipert <git@mail.dweipert.de>2024-09-23 11:13:23 +0200
commit828c5ccb585209f4f7a6f1de84a69d53f76b9081 (patch)
tree95cd1f9d643150e9f36aa6faab71132c20bcacf6 /test/test_import.test
parentde35d2d26a58b9979dcd274f2c1969e0504bc2a9 (diff)
ifs and importsHEADmain
Diffstat (limited to 'test/test_import.test')
-rw-r--r--test/test_import.test4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_import.test b/test/test_import.test
new file mode 100644
index 0000000..99b3a08
--- /dev/null
+++ b/test/test_import.test
@@ -0,0 +1,4 @@
+const exported: string = "I am exported"
+const exported_function: function = (): string {
+ return "I am also exported!"
+}