shithub: mc

ref: e306ec614cf2ae913a34508104a3579f5607562e
dir: /libstd/swap.myr/

View raw version
pkg std =
	generic swap	: (a : @a#, b : @a# -> void)
;;

generic swap = {a : @a#, b : @a#
	var t

	t = a#
	a# = b#
	b# = t
}