27b7c79d创建于 2019年8月29日历史提交
'use strict';

function write(char) {
	if (typeof process != "undefined") {
		process.stdout.write(char)
	} else {
		console.log(char)	
	}
}

write('r');

while('e') {
	write('e');
}