🧠
on a comeback
Highlights
- Pro
Pinned Loading
-
Pointer In C# Like C/C++
Pointer In C# Like C/C++ 1// Add <AllowUnsafeBlocks>true</AllowUnsafeBlocks> To Your *.csproj23int variable = 481;
45unsafe
-
Binary Tree Example With Rust
Binary Tree Example With Rust 1#[derive(PartialEq)]2struct Node<'a> {
3val: &'a str,
4l: Option<Box<Node<'a>>>,
5r: Option<Box<Node<'a>>>,
-
Map Implemented In Pure TypeScript
Map Implemented In Pure TypeScript 1class MyMap<K, V> {
2private map: [key: K, value: V][] = [];
34set(key: K, value: V) {
5const result = this.map.find(([k]) => k === key);
-
My PowerShell Core 7 Profile
My PowerShell Core 7 Profile 1using namespace System.Management.Automation
2using namespace System.Management.Automation.Language
34if ($host.Name -eq 'ConsoleHost') {
5Import-Module PSReadLine -
-
`ls` command implementation in C
`ls` command implementation in C 1#include <stdio.h>
2#include <dirent.h>
3#include <unistd.h>
4#include <sys/stat.h>
5#include <pwd.h>
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.

