Browse Source

Clean patch

Yentl Van Tendeloo 8 years ago
parent
commit
ba7c9a43c0
1 changed files with 0 additions and 3 deletions
  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))!