|
发表于 2024-2-11 12:27:24
|
显示全部楼层
package main
import "fmt"
func main() {
fmt.Println("Helloalp")
}
section .data
hello db 'Helloalp', 0
section .text
global _start
_start:
; write(1, hello, 8)
mov eax, 4 ; sys_write system call
mov ebx, 1 ; file descriptor stdout
mov ecx, hello ; pointer to the string
mov edx, 8 ; string length
int 0x80 ; make syscall
; exit(0)
mov eax, 1 ; sys_exit system call
xor ebx, ebx ; exit code 0
int 0x80 ; make syscall
console.log("Helloalp");
CREATE TABLE mytable (
id INT AUTO_INCREMENT PRIMARY KEY,
message VARCHAR(100)
);
INSERT INTO mytable (message) VALUES ('Helloalp');
<?php
echo "Helloalp";
Helloalp!!!!!!!!!!!!!!!! |
|