mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extend("process")

# Example usage
process:info(info => {
  has_key(info, "pid")
  has_key(info, "username")

  # Optionally check that info["platform"] is "linux" or such
  slog(string:to_string(info))
})

# The callback receives a keyed array with fields like "pid", "uid",
# "username", "platform", "binary_name", and so on.