module.exports = function(grunt) {
  grunt.registerTask("custom", function customFunc() {
    grunt.log.writeln("Hello world!");
  });
}