编程生涯总结 - weigaochen
个人编程生涯时间线与语言学习历程记录
::: vue Hello and Welcome! :::
2013.09 - Now:
#include <stdio.h>
int main() {
printf("Hello and Welcome!\n");
return 0;
}
2014.10 - Now:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello and Welcome!" << endl;
return 0;
}
2015.09 - Now:
class HelloAndWelcome
{
public static void main(String[] args)
{
System.out.println("Hello and Welcome!");
}
}
2017.07 - Now:
#! /bin/bash
echo "Hello and Welcome!"
2017.09 - Now:
print('Hello and Welcome!')
2018.09 - Now:
console.log("Hello and Welcome!");
2018.09 - Now
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hello and Welcome!</title>
</head>
<body>
<div id="app">
<input type="text" v-model="msg" placeholder="edit meit">
<p>
{{ msg }}
</p>
</div>
</body>
</html>
2018.10 - Now:
<script>
var vm = new Vue({
el: '#app',
data: {
msg: 'Hello and Welcome!';
}
})
</script> 修改历史11 次提交
- fix(wiki): clean all lint errors to enable strict CI (PR-3)xiaocheng··
9acd1f2 - refactor: reorganize documentation structure and update Navbar componentxiaocheng··
e7d22e5 - chore(project): clean up obsolete configuration and build artifactsxiaocheng··
d659171 - new struct for lblogsxiaocheng··
6ea1ca2 - move blogs to docsxiaocheng··
a8edecd - update codechenweigao··
e069c6c - update fix: timeline errorchenweigao··
90c74ab - update Datechenweigao··
35bdb9c - init v3chenweigao··
065a35c - init v2chenweigao··
505f81b