define abstract method

void define(
  1. String name,
  2. String template
)

Create a command alias. Maps to: define <name>=<template>

Template supports $$ (entire args) and $1-$9 (positional args).

Implementation

void define(String name, String template);