Just a Test
Description for project one.
Advanced
This is my very first project!
A Header
A section with some content
Here is a link to Google to test out how links work.
I also wanted to see if inline images work, so I made this paragraph with an image inside it. It seems to somewhat work. I might have to do a bit of styling to get this to actually work, but we’ll see what happens. I’m not sure if I actually want to include inline pictures in these projects anyway.
// This is a sample code block
// I need to make sure to include a button so you can easily copy the code
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
And this is a test of some inline code
to see how it works.
I wanted to test a multilevel list, so here are some list items:
-
List item 1
-
List item 1-1
List item 1-1 (2)
List item 1-1 (3)
-
List item 1-2
- List item 1-2-1
- List item 1-2-2
As you can see, images work in lists too
-
List item 1-3
-
-
List item 2
-
List item 3
I thought I’d try another code block to make sure the code copying all works properly.
// This is a sample Swift code block
import Foundation
struct Person {
var firstName: String
var lastName: String
var age: Int
}
let person = Person(firstName: "John", lastName: "Smith", age: 25)
print("Name: \(person.firstName) \(person.lastName), Age: \(person.age)")
Conclusion
This has been a fun project! Hope you enjoy!