Some more languages #2

Closed
opened 2021-08-16 04:21:30 +00:00 by ZippyMagician · 1 comment

off the top of my head:

  • Odin
package main

import "core:fmt"

main :: proc() {
   fmt.println("uwu");
}
  • Arn
"uwu
  • J
echo 'uwu'
  • x86 Assembly
section .text
        global _start

_start:
        mov edx, len
        mov ecx, msg
        mov ebx, 1
        mov eax, 4
        int 0x80

        mov ebx, 0
        mov eax, 1
        int 0x80

section .data
        msg db "uwu", 0xa
        len equ $-msg
  • 05AB1E
"uwu
  • Jelly
"uwu
  • Perl
put "uwu"
off the top of my head: - Odin ```odin package main import "core:fmt" main :: proc() { fmt.println("uwu"); } ``` - Arn ``` "uwu ``` - J ```j echo 'uwu' ``` - x86 Assembly ```x86asm section .text global _start _start: mov edx, len mov ecx, msg mov ebx, 1 mov eax, 4 int 0x80 mov ebx, 0 mov eax, 1 int 0x80 section .data msg db "uwu", 0xa len equ $-msg ``` - 05AB1E ``` "uwu ``` - Jelly ``` "uwu ``` - Perl ```perl put "uwu" ```
sech1p referenced this issue from a commit 2021-08-16 20:14:33 +00:00
sech1p referenced this issue from a commit 2021-08-16 20:14:33 +00:00
sech1p referenced this issue from a commit 2021-08-16 20:14:33 +00:00
Owner

thanks for contribution, i'll add the rest later

thanks for contribution, i'll add the rest later
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: sech1p/uwu#2
No description provided.