.LOBSTER

Archivo LOBSTER

Lobster Source Code File
Hacer una pregunta
RESPUESTA RÁPIDA

Un archivo .lobster contiene código fuente escrito en el lenguaje de programación Lobster, un lenguaje de tipado estático con sangría similar a Python creado por Wouter van Oortmerssen y orientado principalmente a juegos y gráficos. Debido a que es texto plano, puede abrirlo y leerlo en cualquier editor de código, siendo Visual Studio Code el que ofrece el mejor soporte a través del servidor de lenguaje de Lobster. Para ejecutar realmente el programa, pase el archivo al compilador de Lobster, por ejemplo lobster mygame.lobster.

Desarrollador: Wouter van Oortmerssen Categoría: Archivos de desarrollo Estándar abierto MIME: text/plain
SE ABRE EN Windows macOS Linux
Relacionado: .DO · .MD · .HEX · .XSD

En esta página

19k+ extensiones indexadas
Última revisión Jun 22, 2026

¿No está seguro de qué es su archivo?

Suelte cualquier archivo en nuestro identificador - leemos solo los primeros bytes para nombrar el formato.

Identificar un archivo

¿Qué es el formato de archivo LOBSTER?

Un archivo .lobster es un archivo de código fuente escrito en el lenguaje de programación Lobster. Lobster fue diseñado por Wouter van Oortmerssen y lanzado por primera vez en 2011 bajo la licencia Apache 2.0. El archivo contiene texto plano legible por humanos utilizando una sintaxis concisa que se apoya en la sangría en lugar de llaves, por lo que a simple vista se parece mucho al código .py.

Bajo la superficie, los dos lenguajes son bastante diferentes. Lobster es de tipado estático con inferencia de tipos sensible al flujo, lo que permite omitir la mayoría de las anotaciones de tipo y, al mismo tiempo, detectar errores antes de que se ejecute el programa. Gestiona la memoria con conteo de referencias en tiempo de compilación y análisis de tiempo de vida en lugar de un recolector de basura en tiempo de ejecución. El lenguaje es de propósito general, pero su implementación de referencia se distribuye con OpenGL, SDL y otras librerías integradas orientadas a juegos y gráficos, por lo que muchos archivos .lobster forman parte de pequeños juegos o demostraciones gráficas.

Seguridad y protección

RIESGO: LOW

A .lobster file is plain-text source code and cannot run on its own by double-clicking. It only does something when executed by the Lobster compiler, and like any script it can perform whatever actions its code contains, so read unfamiliar files before running them.

Detalles del formato

en pocas palabras
NOMBRE COMPLETOLobster Source Code Filetambién conocido como Lobster Program File, Lobster Script
DESARROLLADORWouter van Oortmerssendesde 2011
TIPO MIMEtext/plain
TIPOPlain-text programming language source code
ESTÁNDARAbierto · libre de regalías
RELACIONADO.do.md.hex.xsd
Esta extensión también es utilizada por…
  • Lobster ETL / test framework (SAP) - Some SAP LO extraction and QA tooling uses the name Lobster, but that is unrelated to this source-code format.
  • Lobster_data / Lobster Integration - Lobster GmbH sells data-integration software called Lobster; its projects are not saved as .lobster source files.

Programas que abren archivos LOBSTER

Windows3 apps
Notepad Código abierto Open and edit the source as plain text, with a community syntax-highlighting setup available.
Lobster (reference compiler/runtime) Código abierto Run the program with lobster yourfile.lobster, or build/pack it using --cpp or --pak.
Visual Studio Code Gratis Open the file to read and edit it; install the Lobster extension for syntax highlighting and language-server features.
macOS3 apps
Sublime Text Pago Edit the source with a community Lobster syntax package installed.
Lobster (reference compiler/runtime) Código abierto Build the toolchain, then run lobster yourfile.lobster from a terminal to execute the program.
Visual Studio Code Gratis Open the file for editing and use the Lobster extension for highlighting and LSP support.
Linux3 apps
Vim Código abierto Edit the source in the terminal using the community vim-lobster plugin for highlighting.
Lobster (reference compiler/runtime) Código abierto Compile the toolchain and run bin/lobster yourfile.lobster to execute the program.
Visual Studio Code Gratis Open and edit the file; add the Lobster extension for the language server.

Detalles técnicos

especificación profunda
EncodingUTF-8 plain text
ContainerNone (flat source text)
Typical sizeA few hundred bytes to tens of kilobytes
StructureHuman-readable Lobster source using significant indentation instead of braces, in the style of Python. Contains function and struct definitions, imports of other .lobster modules, and statements. Statically typed with flow-sensitive type inference, so most types are not written out explicitly.
IntegrityNone built in
PlatformsWindows, macOS, Linux, Web (WebAssembly)
NotesThe reference implementation runs a .lobster file through a JIT/interpreter by default. It can also emit a .lpak bytecode pakfile (--pak) or transpile the program to a .cpp file (--cpp) for shipping builds. The engine bundles OpenGL, SDL and related batteries aimed at games and graphics.
Syntax StylePython-esque, indentation-based
Type SystemStatic, flow-sensitive type inference with specialization
Memory ManagementCompile-time reference counting with lifetime analysis
Lanzado2011
Estándar abierto · libre de regalías
Especificaciónaardappel.github.io

Conversiones de LOBSTER

Preguntas y respuestas de la comunidad

preguntado por usuarios
Hacer una pregunta rápida
Obtenga ayuda de personas que trabajan con archivos LOBSTER. Sea específico: incluya su sistema y la versión del software.
No se necesita cuenta · respuestas generalmente en un día

Aún no hay preguntas; sea el primero en preguntar sobre los archivos LOBSTER.

Preguntas frecuentes

¿Qué programa abre un archivo .lobster?
Cualquier editor de texto lo abre para su lectura. Visual Studio Code con la extensión Lobster ofrece la mejor experiencia, y el compilador de Lobster ejecuta el programa.
¿Cómo ejecuto un archivo .lobster?
Instale el conjunto de herramientas de Lobster desde GitHub, luego ejecute lobster yourfile.lobster (o bin/lobster yourfile.lobster) desde una terminal.
¿Es un archivo .lobster lo mismo que Python?
No. Lobster toma prestada la apariencia basada en sangría de Python, pero es un lenguaje independiente de tipado estático con su propio compilador y librería estándar.
¿Puedo convertir un programa .lobster en una compilación independiente?
Sí. Use lobster --cpp para generar C++ para una compilación nativa, o lobster --pak para crear un archivo pak .lpak que el motor de ejecución pueda ejecutar directamente.
¿Son seguros de abrir los archivos .lobster?
Abrir uno en un editor es inofensivo porque es solo texto. Solo ejecute archivos en los que confíe, ya que al ejecutarlos se realiza cualquier acción que contenga su código.
¿Quién creó el lenguaje Lobster?
Wouter van Oortmerssen diseñó e implementó Lobster, lanzándolo por primera vez en 2011 bajo la licencia Apache 2.0.

Referencias

1Lobster on GitHub (aardappel/lobster)github.com
2Lobster official documentationaardappel.github.io

Siga explorando

en toda la base de datos

Extensiones principales esta semana

1.AQQAQQ Instant Messenger File
2.BINCD/DVD Disc Image (BIN/CUE)
3.MDMarkdown Document
4.RPMSGRestricted Permission Message
5.PARTPartial Download File
6.CRDOWNLOADChrome Partial Download File
7.NOMEDIAAndroid No-Media Marker File
8.PRO6XProPresenter 6 Bundle File
9.PRDXSoftMaker Presentations Document
10.SWFSmall Web Format (Shockwave Flash)

Extensiones relacionadas

.DOStata Do-File
.MDMarkdown Document
.HEXIntel HEX File
.XSDXML Schema Definition
.MAPSource Map (JavaScript / CSS)
.CONFIGConfiguration File

Herramientas de archivo gratuitas

Un identificador de archivos y convertidor de imágenes en el navegador - todo se ejecuta en su dispositivo.

Abrir la caja de herramientas

Explorar extensiones de archivo A-Z