/**
* f1S
* This method implements the function logic of the CAL function Cal.Core.Prelude.repeat
*/
public final RTValue f1S(RTValue valueToRepeat, RTExecutionContext $ec) throws CALExecutorException {
RTIndirection letVar_repeatedValueList = new RTIndirection();
letVar_repeatedValueList.setResult(
new TYPE_List.CAL_Cons(valueToRepeat, letVar_repeatedValueList));
// Top level supercombinator logic
return letVar_repeatedValueList;
}