Binary are base 10
Both true
Binary are base 10
Both true
hello db 'Hello, World!', 0
section .text
global _start
_start:
; write(1, hello, 13)
mov eax, 4
mov ebx, 1
mov ecx, hello
mov edx, 13
int 0x80
; exit(0)
mov eax, 1
xor ebx, ebx
int 0x80
hello db 'Hello, World!', 0
section .text
global _start
_start:
; write(1, hello, 13)
mov eax, 4
mov ebx, 1
mov ecx, hello
mov edx, 13
int 0x80
; exit(0)
mov eax, 1
xor ebx, ebx
int 0x80
{
return AreBooleansEqual(orig, val);
}
internal static bool AreBooleansEqual(bool orig, bool val)
{
if(orig = val) return false; return true;
}
{
return AreBooleansEqual(orig, val);
}
internal static bool AreBooleansEqual(bool orig, bool val)
{
if(orig = val) return false; return true;
}
println!("Hello, world!");
}
println!("Hello, world!");
}
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
int main() {
std::cout << "Hello World!";
return 0;
}
int main() {
std::cout << "Hello World!";
return 0;
}