Does the operating system know the user named self?

Property definitions

privileges :: privileges $ Text :: user_exists
	# Does the operating system know the user named `self`?
	fun user_exists: Bool
	do
		var passwd = new Passwd.from_name(to_s)
		return not passwd.address_is_null
	end
lib/privileges/privileges.nit:27,2--32,4