From 9891b20350021ce41a950645dd76df20a45c92cc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 2 Dec 2015 11:37:15 +0200 Subject: Implement optional module loading The syntax is: using? cli Now each module use results in two bool variables: .loaded and .configured. Also implement variable visibility (the above two variables are limited to project). --- tests/using/buildfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/using/buildfile (limited to 'tests') diff --git a/tests/using/buildfile b/tests/using/buildfile new file mode 100644 index 0000000..86baa42 --- /dev/null +++ b/tests/using/buildfile @@ -0,0 +1,5 @@ +using? foo +print $foo.loaded +print $foo.configured + +./: -- cgit v1.1