diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-04 23:53:35 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-04 23:53:35 +0200 |
commit | ec491e200ba82f6f6d0df2f10ae4a607efeb3657 (patch) | |
tree | fab7d7f7fd904510399cd71d6575128bb103def8 /modules/modtest.py | |
parent | 4745b07e9924ad5dd48d23766833be0ba5749a99 (diff) | |
download | meson-ec491e200ba82f6f6d0df2f10ae4a607efeb3657.zip meson-ec491e200ba82f6f6d0df2f10ae4a607efeb3657.tar.gz meson-ec491e200ba82f6f6d0df2f10ae4a607efeb3657.tar.bz2 |
A very simple module implementation to get things going.
Diffstat (limited to 'modules/modtest.py')
-rw-r--r-- | modules/modtest.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/modtest.py b/modules/modtest.py new file mode 100644 index 0000000..e6d4c5f --- /dev/null +++ b/modules/modtest.py @@ -0,0 +1,16 @@ +# Copyright 2012-2015 The Meson development team + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +def print_hello(args, kwargs): + print('Hello from a Meson module') |