瀏覽代碼

Clean patch

Yentl Van Tendeloo 8 年之前
父節點
當前提交
ba7c9a43c0
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      bootstrap/constructors.alc

+ 0 - 3
bootstrap/constructors.alc

@@ -15,11 +15,8 @@ Element function construct_function():
 	len = input()
 	list = list_create()
 
-	log("Waiting for " + cast_v2s(len))
 	while (list_len(list) < len):
-		log("Current length: " + cast_v2s(list_len(list)))
 		list_append(list, input())
-	log("Ready!")
 
 	return construct_function_list(list_reverse(list))!