Search
 
SCRIPT & CODE EXAMPLE
 

RUST

macro_rules!

// This is a simple macro named `say_hello`.
macro_rules! say_hello {
    // `()` indicates that the macro takes no argument.
    () => {
        // The macro will expand into the contents of this block.
        println!("Hello!");
    };
}

fn main() {
    // This call will expand into `println!("Hello");`
    say_hello!()
}
Comment

PREVIOUS NEXT
Code Example
Rust :: armanriazi•rust•error•[E0072]: recursive type `List` has infinite size -- src/main.rs:3:1 | 3 | enum List { | ^^^^^^^^^ recursive type has infinite size 
Rust :: search in dir rust 
Rust :: decimal in rust 
Rust :: armanriazi•rust•copy•clone•deeply•shallow 
Rust :: rust array literal 
Rust :: rust vec length 
Lua :: print table lua 
Lua :: roblox how to get random object from a table 
Lua :: lua math floor 
Lua :: roblox player joined 
Lua :: how to stop a renderstepped loop in lua 
Lua :: roblox part tween 
Lua :: roblox studio Teleport service not working 
Lua :: roblox go thru all players 
Lua :: how to make a color changing brick in roblox studio 
Lua :: Random Map in roblox 
Lua :: vector2 roblox 
Lua :: fivem commands example lua 
Lua :: how do i do a wait lin lua replit 
Lua :: roblox add attribute 
Lua :: what is lua programming language 
Lua :: <font color="" roblox 
Lua :: roblox lua exploiting rconsole 
Matlab :: matlab not less than 
Matlab :: matlab what comes instead of drawmode 
Basic :: theme leaf concatenate 
Basic :: sequnce function vb.net 
Elixir :: elixir append lists 
Scala :: scala match default 
Scala :: scala string get char 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =