<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Golang on 知识铺的博客</title>
    <link>https://index.zshipu.com/geek/tags/golang/</link>
    <description>Recent content in Golang on 知识铺的博客</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Sun, 11 Oct 2020 21:56:25 +0800</lastBuildDate>
    <atom:link href="https://index.zshipu.com/geek/tags/golang/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Golang基础：go语言中的循环</title>
      <link>https://index.zshipu.com/geek/post/go/Golang%E5%9F%BA%E7%A1%80go%E8%AF%AD%E8%A8%80%E4%B8%AD%E7%9A%84%E5%BE%AA%E7%8E%AF/</link>
      <pubDate>Sun, 11 Oct 2020 21:56:25 +0800</pubDate>
      <guid>https://index.zshipu.com/geek/post/go/Golang%E5%9F%BA%E7%A1%80go%E8%AF%AD%E8%A8%80%E4%B8%AD%E7%9A%84%E5%BE%AA%E7%8E%AF/</guid>
      <description>循环允许您重复代码。有不同类型的循环，其中之一是 for 循环。对于Go（golang）中的循环，与 Python 更类似于 C/Java。在 Python 中，语法是 for i in range(1,10): 在 C/Java 中，语法为 for (i = 1; i &amp;lt;= 10; i++) { 但在Golang for i := 1; i &amp;lt;= 10; i++ { 因此，它受到这些语言的启发。 For 循环解释 在上面的程序中，它是什么意思？ 首先变量</description>
    </item>
  </channel>
</rss>
