我的第一篇文章

前言

大家好,今后将开始我的新学习之路,花费两天时间终于解决了基本问题,搭建好了简陋的博客,之后会将学习笔记陆续搬到网站上,公众号也会同步更新。

如何制作博客以及将博客部署到github上

我基本上是在csdn上找的教程,其中一些文件的代码修改我并不太懂,回忆搭建过程也是坎坷零星,如果后面有时间,把我搭建过程中遇到的问题整理整理。以下是参考链接(全在我的主页收藏夹里了): https://blog.csdn.net/m0_46488303?type=collect

<code data-type="pre-exercise-code">
    # 这部分代码是在初始化的时候自动运行的
    b = 6
</code>
<code data-type="sample-code">
    # 这里是示例代码


    # Print out a


</code>
<code data-type="solution">
    # 这里是答案
    a <- 5

    # Print out a
    print(a)
</code>
<code data-type="sct">
    test_object("a")
    test_function("print")
    success_msg("Great job!")
</code>
<div data-type="hint">Use the assignment operator (code<-</code>) to create the variable codea</code>.</div>