From 4cbe8730c4d1f260d548e87d69ef81c39338213a Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 26 Aug 2015 14:58:04 -0400 Subject: [PATCH] lib: add placebo `standard` to enable the bootstrap. Signed-off-by: Jean Privat --- lib/standard.nit | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/standard.nit diff --git a/lib/standard.nit b/lib/standard.nit new file mode 100644 index 0000000..1ff8288 --- /dev/null +++ b/lib/standard.nit @@ -0,0 +1,18 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# This file is free software, which comes along with NIT. This software is +# distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +# without even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. You can modify it is you want, provided this header +# is kept unaltered, and a notification of the changes is added. +# You are allowed to redistribute it and sell it, alone or is a part of +# another product. + +# Old module implicitly imported by the old compiler. +# Now it just import `core` +module standard is + # Use `core` instead of `standard`. + deprecated +end + +import core -- 1.7.9.5