This is a place to contribute if you are a first timer. Contains people present in the world of open source, check out some of the amazing users here
Hi there, if you are reading this then probably you are new to open source and looking for some issues to contribute to.
You can start by contributing to this awesome list, follow these simple steps to make your first successful PR.
2018
create a new markdown file with your username and enter details in the following format# Introduction ��
**Name ��**: "Your Name here"
**Place ��** : "Your Place here"
**Bio ��**: "Enter about Yourself"
**GitHub ��**: [".."](Your github profile url)
![Awesome](https://awesome.re/badge.svg)
Star this repository
Fork this repository
Clone this repository by clicking on green clone or download button and then copying the link given there.
Open your terminal(linux/mac) or git bash(windows) and write
git clone https://github.com/Anupam-dagar/awesome-first-timers.git
Change your directory.cd awesome-first-timers
Open 2018
,create a new markdown file with your username and enter details in the following format
# Introduction ��
**Name ��**: "Your Name here"
**Place ��** : "Your Place here"
**Bio ��**: "Enter about Yourself"
**GitHub ��**: [".."](Your github profile url)
![Awesome](https://awesome.re/badge.svg)
返回序列的第一个元素。 语法 (Syntax) 以下是语法。 (first seq1) Parameters - 'seq1'是元素的序列列表。 Return Value - Return Value序列的第一个元素。 例子 (Example) 以下是Clojure中的第一个例子。 (ns clojure.examples.example (:gen-class)) ;; This pro
此函数返回列表中的第一项。 语法 (Syntax) 以下是语法。 (first lst) Parameters - 'lst'是项目列表。 Return Value - 列表中的第一个值。 例子 (Example) 以下是Clojure中的第一个例子。 (ns clojure.examples.example (:gen-class)) (defn example [] (print
此属性返回列表中的第一个元素。 语法 (Syntax) List.first 例子 (Example) void main() { var lst = new List(); lst.add(12); lst.add(13); print("The first element of the list is: ${lst.first}"); } 它将产生以下
An optimized version of Sequence#first that returns another StringLikeSequence (or just the first character, if count is undefined). Examples Lazy('foo').first() // => 'f' Lazy('fo').fi
An optimized version of Sequence#first, which creates an ArrayLikeSequence so that the result still provides random access. Examples Lazy([1, 2, 3]).first(2) // instanceof Lazy.ArrayLikeSequence
Creates a new sequence comprising the first N elements from this sequence, OR (if N is undefined) simply returns the first element of this sequence. Signature Sequence.first = function(count) { /*...*