This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "en_hist_01", | |
"content": "World War II was a global conflict that lasted from 1939 to 1945. It involved the vast majority of the world's countries—including all of the great powers—forming two opposing military alliances: the Allies and the Axis." | |
}, | |
{ | |
"id": "en_hist_02", | |
"content": "The Bagan Kingdom, located in modern-day Myanmar, was the first kingdom to unify the regions that would later constitute the country. During its height from the 11th to 13th centuries, over 10,000 Buddhist temples, pagodas, and monasteries were constructed in the Bagan plains alone." | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//1. Creating a List | |
void main() { | |
// Fixed-length list | |
var fixedList = List.filled(5, 0); // A list of length 5 filled with 0 | |
print(fixedList); // Output: [0, 0, 0, 0, 0] | |
// Growable list | |
var growableList = [1, 2, 3]; | |
print(growableList); // Output: [1, 2, 3] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Article Four</title> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" | |
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" |