# foreach **Repository Path**: kongdd/foreach ## Basic Information - **Project Name**: foreach - **Description**: R package repository. foreach — Provides Foreach Looping Construct for R - **Primary Language**: R - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2019-08-24 - **Last Updated**: 2020-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # foreach [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/kongdd/foreach?branch=master&svg=true)](https://ci.appveyor.com/project/kongdd/foreach) * Names of `list`, `data.frame`, or `vector` object is automatically inherited. ## Installation You can install the development version from [GitHub](https://github.com/) with: ``` r # install.packages("devtools") devtools::install_github("kongdd/foreach") ``` ## Example This is a basic example which shows you how to solve a common problem: ``` r library(foreach) ## basic example code ```